美文网首页iOS
注意UIImageWriteToSavedPhotosAlbum

注意UIImageWriteToSavedPhotosAlbum

作者: EagleOne | 来源:发表于2015-11-12 16:25 被阅读3267次

留坑晚上更,第三个回调方法竟然有固定的格式。


void* contextInfo;
UIImageWriteToSavedPhotosAlbum(image, self,@selector(image:didFinishSavingWithError:contextInfo:),contextInfo);

固定格式的回调方法:
- (void) image: (UIImage *) image
didFinishSavingWithError: (NSError *) error
contextInfo: (void *) contextInfo{
NSLog(@"呵呵哒");
[self.view addMBHUDwithTip:@"保存照片成功"];
}


因为没有协议,执行的回调的时候只能按照固定的格式写回调方法。

相关文章

网友评论

    本文标题:注意UIImageWriteToSavedPhotosAlbum

    本文链接:https://www.haomeiwen.com/subject/ecghhttx.html