//访问保存照片
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)
本文介绍如何使用Swift将UIImage对象保存到iOS设备的相册,并提供了具体的代码实现及方法签名转换说明。
4267

被折叠的 条评论
为什么被折叠?



