「Ios/swift/画像保存」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==画像保存== UIImageWriteToSavedPhotosAlbum(_imageView.image!, self, #selector(ImageDetailViewController.image(_:didFinishSavingWithError:contextInfo:)), nil)...」) |
(相違点なし)
|
2016年8月1日 (月) 09:44時点における版
画像保存
UIImageWriteToSavedPhotosAlbum(_imageView.image!, self, #selector(ImageDetailViewController.image(_:didFinishSavingWithError:contextInfo:)), nil) func image(image: UIImage, didFinishSavingWithError error: NSError!, contextInfo: UnsafeMutablePointer<Void>) { var title:String = "保存完了" var message:String = "アルバムへの保存完了" if error != nil { title = "エラー" message = "アルバムへの保存に失敗しました" } let alert:UIAlertController = UIAlertController(title: title, message: message, preferredStyle: UIAlertControllerStyle.Alert) alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler: { (action) -> Void in print("ok") })) self.presentViewController(alert, animated: true, completion: {}) }