iOS

注意UIImageWriteToSavedPhotosAlbum

2015-11-12  本文已影响3267人  EagleOne

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


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

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


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

上一篇 下一篇

猜你喜欢

热点阅读