AVCaptureAudioDataOutputSampleBufferDelegate
Наследование
Не применимый
Оператор импорта
Swift
import AVFoundation
Objective C
@import AVFoundation;
Доступность
Доступный в iOS 4.0 и позже.
Делегат AVCaptureAudioDataOutputSampleBuffer
объект должен принять AVCaptureAudioDataOutputSampleBufferDelegate
протокол. Метод в этом протоколе является дополнительным.
-
captureOutput (_: didOutputSampleBuffer:fromConnection:) - captureOutput:didOutputSampleBuffer:fromConnection:
ТребуемыйУведомляет делегата, что был записан демонстрационный буфер. (требуемый)
Объявление
Swift
optional func captureOutput(_
captureOutput
: AVCaptureOutput!, didOutputSampleBuffersampleBuffer
: CMSampleBuffer!, fromConnectionconnection
: AVCaptureConnection!)Objective C
- (void)captureOutput:(AVCaptureOutput *)
captureOutput
didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer
fromConnection:(AVCaptureConnection *)connection
Параметры
captureOutput
Выходной объект получения.
sampleBuffer
Выведенный демонстрационный буфер.
connection
Соединение.
Оператор импорта
Objective C
@import AVFoundation;
Swift
import AVFoundation
Доступность
Доступный в iOS 4.0 и позже.