Posts Tagged ‘カメラロール’

カメラロールに画像を保存(iOS)

2014年10月10日

ALAssetsLibrary の writeImageToSavedPhotosAlbum メソッドを使います。

ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];
UIImage* img = self.imageView.image;
[library writeImageToSavedPhotosAlbum:img.CGImage orientation:ALAssetOrientationUp completionBlock:^(NSURL *assetURL, NSError *error) {
    if (error) {
        //エラー処理
    }
}];