我的iOS应用程序中有一项功能。用户可以选择将照片或视频保存到iPhoto应用程序。当用户按下“保存”时。按钮,它再次保存照片或视频。有没有办法覆盖现有文件而不是再次保存。
[self writeVideoAtPathToSavedPhotosAlbum:url completionBlock:^(NSURL* assetURL, NSError* error) {
//error handling
if (error!=nil) {
completionBlock(error);
return;
}
//add the asset to the custom photo album
[self addAssetURL: assetURL
withCompletionBlock:completionBlock];
}];
对此有何建议?使用校验和?