Quote:
Originally Posted by RickMaddy
If all you want to do is save an image from your resource bundle to the camera roll then change your code to this:
Code:
- (IBAction)save:(id)sender {
UIImage *image = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"image" ofType:@"png"]];
UIImageWriteToSavedPhotosAlbum(image, nil, nil, nil);
}
|
This works if I put in @"image0". Just "image" shows black. How do I add the other 24 images? Thanks!
robart.