が提供する URL で画像を作成しますPHContentEditingOutput
。このようにデータをロードしUIImage
て保存すると、機能します。
[[PHPhotoLibrary sharedPhotoLibrary] performChanges:^{
NSData *data = [NSData dataWithContentsOfURL:contentEditingOutput.renderedContentURL]
UIImage *image = [UIImage imageWithData:data];
[PHAssetChangeRequest creationRequestForAssetFromImage:image];
} completionHandler:^(BOOL success, NSError *error) {
...
}];
しかし、URLでアプローチしようとすると失敗します:
[[PHPhotoLibrary sharedPhotoLibrary] performChanges:^{
[PHAssetChangeRequest creationRequestForAssetFromImageAtFileURL:contentEditingOutput.renderedContentURL];
} completionHandler:^(BOOL success, NSError *error) {
...
}];
エラー:
エラー Domain=NSCocoaErrorDomain Code=-1 "The operation could not be completed. (Cocoa error -1.)"
アップデート:
変更を保存しようとすると、同じエラーが発生します。
[[PHPhotoLibrary sharedPhotoLibrary] performChanges:^{
PHAssetChangeRequest *request = [PHAssetChangeRequest changeRequestForAsset:asset];
request.contentEditingOutput = contentEditingOutput;
} completionHandler:^(BOOL success, NSError *error) {
...
}];
このメソッドはビデオ ( creationRequestForAssetFromVideoAtFileURL:
) では機能しますが、画像では機能しません。何が悪かったのか?