留坑晚上更,第三个回调方法竟然有固定的格式。
void* contextInfo;
UIImageWriteToSavedPhotosAlbum(image, self,@selector(image:didFinishSavingWithError:contextInfo:),contextInfo);
固定格式的回调方法:
- (void) image: (UIImage *) image
didFinishSavingWithError: (NSError *) error
contextInfo: (void *) contextInfo{
NSLog(@"呵呵哒");
[self.view addMBHUDwithTip:@"保存照片成功"];
}
因为没有协议,执行的回调的时候只能按照固定的格式写回调方法。
网友评论