LoginSignup
44
41

More than 5 years have passed since last update.

【iOS】【swift】アルバムへの保存 UIImageWriteToSavedPhotosAlbum

Posted at

基礎的な話ですが。

保存処理


// image は UIImage
UIImageWriteToSavedPhotosAlbum(image, self, "image:didFinishSavingWithError:contextInfo:", nil)


保存処理の結果受け取り


func image(image: UIImage, didFinishSavingWithError error: NSError!, contextInfo: UnsafeMutablePointer<Void>) {
        if error != nil {
            //プライバシー設定不許可など書き込み失敗時は -3310 (ALAssetsLibraryDataUnavailableError)
            println(error.code)
        }
}

エラーの意味などについては
このあたりに記述されています。

44
41
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
44
41