我使用以下代码创建了一个自定义相册
(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 中创建图库。
谢谢,
苏吉特