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);
}
|
Sweet! Thanks Rick. That's exactly what I needed.