iOS:使用 UIImagePickerController 不在默认相册中存储新照片

发布于 2024-12-27 14:40:46 字数 806 浏览 1 评论 0 原文

我正在使用 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 来存储它?

I am using UIImageWriteToSavedPhotosAlbum to store a new photo on the iPhone (code see below).

UIImageWriteToSavedPhotosAlbum(image, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);

This works fine. However I would like to store new photos in a different album. Not the default one.

EDIT

I am using the following block to create the album.

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];`

I am using the UIImagePickerController. How do I get the asset of a new image? When/where do I call UIImageWriteToSavedPhotosAlbum to store it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文