SCMediaError

@interface SCMediaError : NSObject
typedef enum MediaErrorCode {
    MEDIA_ERR_ABORTED = 1,
    MEDIA_ERR_NETWORK,
    MEDIA_ERR_DECODE,
    MEDIA_ERR_SRC_NOT_SUPPORTED
} MediaErrorCode;

//
- (instancetype)initWithErrorCode:(NSInteger)errorCode message:(NSString*)message;
- (NSDictionary*)description;
@end

Undocumented

  • Undocumented

    Declaration

    Objective-C

    - (instancetype)initWithErrorCode:(NSInteger)errorCode message:(NSString*)message;
  • Undocumented

    Declaration

    Objective-C

    - (NSDictionary*)description;