前端之家收集整理的这篇文章主要介绍了
Swift中把图片保存到相册,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
let image = UIImage(name: "picture")
UIImageWriteToSavedPhotosAlbum(image!,self,"image:didFinishSavingWithError:contextInfo:",nil)
参数说明
第一个参数: 要保存的图片
第二个参数: 谁监听
第三个参数: 监听后要执行什么方法(点进去发现是一个OC的方法,取出方法名)
第四个参数: 监听后传值
用Swift实现OC方法:
- (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo;
func image(image:UIImage,didFinishSavingWithError error:NSError?,contextInfo:AnyObject) {
if error != nil {
SVProgressHUD.showErrorWithStatus("保存失败")
SVProgressHUD.setDefaultMaskType(SVProgressHUDMaskType.Black)
} else {
SVProgressHUD.showSuccessWithStatus("保存成功")
SVProgressHUD.setDefaultMaskType(SVProgressHUDMaskType.Black)
}
}
原文链接:https://www.f2er.com/swift/323871.html