- (
void)loadImageFinished:(UIImage *)image
{
UIImageWriteToSavedPhotosAlbum(image, self, @selector(image:didFinishSavingWithError:contextInfo:), (__bridge void *)self); } - (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo { NSLog(@"image = %@, error = %@, contextInfo = %@", image, error, contextInfo); }
转载于:https://www.cnblogs.com/Ewenblog/p/10783702.html
相关资源:ios截图并保存到相册
转载请注明原文地址: https://mac.8miu.com/read-65564.html