AliyunMixRecorderDelegate
@protocol AliyunMixRecorderDelegate <AliyunIRecorderDelegate>
/****
The callback when the composition process is started.
*/
- (void)mixRecorderComposerDidStart;
/****
The callback that outputs the progress of composition.
@param progress The progress.
*/
- (void)mixRecorderComposerOnProgress:(CGFloat)progress;
/****
The callback when the composition process is complete.
*/
- (void)mixRecorderComposerDidComplete;
/****
The callback when an error occurs during the composition process.
@param errorCode The error code.
*/
- (void)mixRecorderComposerDidError:(int)errorCode;
@end
Undocumented
-
* The callback when the composition process is started.
Declaration
Objective-C
- (void)mixRecorderComposerDidStart;
-
* The callback that outputs the progress of composition.
Declaration
Objective-C
- (void)mixRecorderComposerOnProgress:(CGFloat)progress;
Parameters
progress
The progress.
-
* The callback when the composition process is complete.
Declaration
Objective-C
- (void)mixRecorderComposerDidComplete;
-
* The callback when an error occurs during the composition process.
Declaration
Objective-C
- (void)mixRecorderComposerDidError:(int)errorCode;
Parameters
errorCode
The error code.