AliyunThumbnailParserDelegate
@protocol AliyunThumbnailParserDelegate <NSObject>
/**
获取出错,注意在子线程回调,而不是主线程 API_AVAILABLE(3.20.0)
@param code 错误码.
*/
- (void)thumbnailParser:(AliyunThumbnailParser *)parser onError:(int)code;
/**
获取某张图片出错,注意在子线程回调,而不是主线程 API_AVAILABLE(3.20.0)
@param code 错误码
@param time 时间戳,单位:秒
*/
- (void)thumbnailParser:(AliyunThumbnailParser *)parser onPicError:(int)code time:(float)time;
/**
获取到的图片,注意在子线程回调,而不是主线程 API_AVAILABLE(3.20.0)
@param image 图片,可能是nil,需要做判断
@param time 时间戳,单位:秒
*/
- (void)thumbnailParser:(AliyunThumbnailParser *)parser onGetPicture:(UIImage *)image time:(float)time;
/**
完成所有图片的获取,注意在子线程回调,而不是主线程 API_AVAILABLE(3.20.0)
*/
- (void)thumbnailParserOnCompleted:(AliyunThumbnailParser *)parser;
@end
Undocumented
-
获取出错,注意在子线程回调,而不是主线程 API_AVAILABLE(3.20.0)
Declaration
Objective-C
- (void)thumbnailParser:(AliyunThumbnailParser *)parser onError:(int)code;
Parameters
code
错误码.
-
获取某张图片出错,注意在子线程回调,而不是主线程 API_AVAILABLE(3.20.0)
Declaration
Objective-C
- (void)thumbnailParser:(AliyunThumbnailParser *)parser onPicError:(int)code time:(float)time;
Parameters
code
错误码
time
时间戳,单位:秒
-
获取到的图片,注意在子线程回调,而不是主线程 API_AVAILABLE(3.20.0)
Declaration
Objective-C
- (void)thumbnailParser:(AliyunThumbnailParser *)parser onGetPicture:(UIImage *)image time:(float)time;
Parameters
image
图片,可能是nil,需要做判断
time
时间戳,单位:秒
-
完成所有图片的获取,注意在子线程回调,而不是主线程 API_AVAILABLE(3.20.0)
Declaration
Objective-C
- (void)thumbnailParserOnCompleted:(AliyunThumbnailParser *)parser;