views:

29

answers:

2

Im working on my first app for the apple app store and I am in need of the code to be able to see a picture and save it to the photos, also where the code goes, so some what of a tutorial of how to save a picture to the photos app, I am working with the latest version of the iphone SDK.

+1  A: 
UIImageWriteToSavedPhotosAlbum(image, self, (SEL)@selector(image:didFinishSavingWithError:contextInfo:), nil);

Here's an example.

kovpas
A: 

Referring "iPhone cookbook" by Erica Sadun

Aji