I'm working on an app that involves getting information from a photo that is taken with the in-built camera of the iPhone.
UIImagePickerController * picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.sourceType = UIImagePickerControllerSourceTypeCamera;
[self presentModalViewController:picker animated:YES];
I would like to get the info on date/time of capture as well as the coordinates of the place of capture. Any idea how I would do this?