I am making a camera application.
Using UIImagePickerController, I can take a picture.
then I want to save this picture with Exif metadata.
I implemented save the picture with GPS metadata
using ALAssetsLibrary
ALAssetsLibrary* library = [[ALAssetsLibrary alloc] init];
[library writeImageToSavedPhotosAlbum:[image CGImage] metadata:metadata completionBlock:compBlock];
[library release];
I used that method, and metadata contains GPSDictionary.
Like this, I want to save Exif data that contains shutter speed, white balance, date time, and so on.
but I don't know how to get those data.
Is it possible to get those data from camera? (Not camera roll)