0

我使用以下代码创建了一个自定义相册

(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
    <--other code stuffs here-->
    <--selectedImage is the UIImage from Camera or from gallery-->

    [self.library saveImage:selectedImage toAlbum:@"My Album" withCompletionBlock:^(NSError *error)
    {
        if (error!=nil)
        {
            NSLog(@"Big error: %@", [error description]);
        }
    }];
    <--other code stuffs here-->
}

现在我想在我的应用程序中显示这些保存的图像。

如何访问这些图像,并在我的 APP 中创建图库。

谢谢,

苏吉特

4

1 回答 1

2

您想要的ALAssetsLibrary方法是 addAssetsGroupAlbumWithName:resultBlock:failureBlock: 方法,这里的文档中有详细说明:http: //developer.apple.com/library/ios/#documentation/AssetsLibrary/Reference/ALAssetsLibrary_Class/Reference/Reference.html# //apple_ref/occ/cl/ALAssetsLibrary

它是在 iOS 5 中引入的,此后一直没有被弃用,所以如果它不适合您,我不太确定问题是什么。如果您遇到问题,您可能需要更新或重新发布问题。

于 2013-06-07T16:21:49.177 回答