Bit6AudioRecorderControllerDelegate Protocol Reference
| Conforms to | NSObject |
| Declared in | Bit6AudioRecorderController.h |
Overview
The Bit6AudioRecorderControllerDelegate protocol defines the methods a delegate of a Bit6AudioRecorderController object should implement. The methods of this protocol notify the delegate when the recording was either completed or canceled by the user.
Tasks
-
– doneRecorderController:filePath:required method -
– isRecordingWithController:filePath:required method -
– cancelRecorderController:required method
Instance Methods
cancelRecorderController:
Called when a user has cancelled the recording process.
- (void)cancelRecorderController:(nonnull Bit6AudioRecorderController *)b6rcParameters
- b6rc
The controller object recording the audio file.
Declared In
Bit6AudioRecorderController.hdoneRecorderController:filePath:
Called when a user has completed the recording prccess.
- (void)doneRecorderController:(nonnull Bit6AudioRecorderController *)b6rc filePath:(nonnull NSString *)filePathParameters
- b6rc
The controller object recording the audio file.
- filePath
file where the audio was saved.
Declared In
Bit6AudioRecorderController.hisRecordingWithController:filePath:
Called each 0.5 seconds while recording.
- (void)isRecordingWithController:(nonnull Bit6AudioRecorderController *)b6rc filePath:(nonnull NSString *)filePathParameters
- b6rc
The controller object recording the audio file.
- filePath
file where the audio is being saved.
Declared In
Bit6AudioRecorderController.h