美文网首页
保存图片到相册-Swift3

保存图片到相册-Swift3

作者: 苏格拉木有底oo | 来源:发表于2016-11-23 16:35 被阅读154次


    func saveImage() {
        UIImageWriteToSavedPhotosAlbum(imageToSave, self, #selector(TKLongImageViewController.image(image:didFinishSavingWithError:contextInfo:)), nil)
    }
    
    func image(image: UIImage, didFinishSavingWithError error: NSError?, contextInfo:UnsafeRawPointer) {
        if error == nil {
            let ac = UIAlertController(title: "保存成功", message: "图片已经保存到相册啦", preferredStyle: .alert)
            ac.addAction(UIAlertAction(title: "好的", style: .default, handler: nil))
            present(ac, animated: true, completion: nil)
        } else {
            let ac = UIAlertController(title: "出错了~", message: error?.localizedDescription, preferredStyle: .alert)
            ac.addAction(UIAlertAction(title: "好的", style: .default, handler: nil))
            present(ac, animated: true, completion: nil)
        }
    }

相关文章

网友评论

      本文标题:保存图片到相册-Swift3

      本文链接:https://www.haomeiwen.com/subject/pcsvpttx.html