Swift2.0中解决访问资源库函数 - (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error conte错误。

前端之家收集整理的这篇文章主要介绍了Swift2.0中解决访问资源库函数 - (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error conte错误。前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

//访问保存照片
UIImageWriteToSavedPhotosAlbum(UIImage *image,id completionTarget,SEL completionSelector,void *contextInfo);

//只能调用这个方法
- (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo;


//Swfit2.0中要改变这个方法 - (void)image:(UIImage *)image didFinishSavingWithError:(NSError *) error contextInfo: (void *) contextInfo;


改变方法为:

//解释:didFinishSavingWithError为外部参数。 在OC中有两个contextInfo ,Swift中自动推断后,删除一个contextInfo.

@objc private func image(image: UIImage,didFinishSavingWithError error:NSError?,contextInfo: AnyObject) {

print("保存成功")
}

调用

UIImageWriteToSavedPhotosAlbum(image,self,"image:didFinishSavingWithError:contextInfo:",nil)

原文链接:https://www.f2er.com/swift/325604.html

猜你在找的Swift相关文章