iOS:使用 UIImagePickerController 不在默认相册中存储新照片
我正在使用 UIImageWriteToSavedPhotosAlbum 在 iPhone 上存储新照片(代码见下文)。
UIImageWriteToSavedPhotosAlbum(image, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);
这很好用。不过我想将新照片存储在不同的相册中。不是默认的。
编辑
我正在使用以下块来创建相册。
ALAssetsLibraryGroupResultBlock resultblock = ^(ALAssetsGroup *assetGroup)
{
[assetGroup addAsset:myasset]
};
ALAssetsLibraryAccessFailureBlock failureblock = ^(NSError *myerror)
{
NSLog(@"in failureblock, got an error: %@",[myerror localizedDescription]);
};
[library addAssetsGroupAlbumWithName:name resultBlock:resultblock failureBlock:failureblock];`
我正在使用 UIImagePickerController。如何获得新图像的资产?我何时/在哪里调用 UIImageWriteToSavedPhotosAlbum 来存储它?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
自 iOS 5 起,您可以使用 addAssetsGroupAlbumWithName:resultBlock:failureBlock: 创建新相册/#documentation/AssetsLibrary/Reference/ALAssetsLibrary_Class/Reference/Reference.html" rel="nofollow">ALAssetsLibrary
Since iOS 5 you can create a new album with
addAssetsGroupAlbumWithName:resultBlock:failureBlock:
using the ALAssetsLibrary