I am wondering if it is possible to add GPS information to a photograph when saving the item to the camera roll.
The code I currently use to save the image is:
UIImage *theImage = (UIImage *)[info objectForKey: UIImagePickerControllerOriginalImage];
UIImageWriteToSavedPhotosAlbum(theImage, self,
@selector(image:didFinishSavingWithError:contextInfo:), nil);
I am wondering how I can modify the image EXIF data to add the current location, and make it compatible with the 'Places' functionality on the iPhone.