I have saved photos to my customised album in my app using code
[library saveImage:self.capturedImg toAlbum:@"FunCam" withCompletionBlock:^(NSError *error) {
if (error!=nil) {
NSLog(@"Big error: %@", [error description]);
}
}];
Now I want to retrive all photos saved to that album when user click some button and show them in view like camera app (the default app on iphone) shows
Please help me how can I do that?
Thanks in advance
Try these methods…
hope they will help….