Skip to content

Instantly share code, notes, and snippets.

@yomybaby
Created July 7, 2015 11:19
Show Gist options
  • Save yomybaby/4449d7b68453bb45947b to your computer and use it in GitHub Desktop.
Save yomybaby/4449d7b68453bb45947b to your computer and use it in GitHub Desktop.
get exif data from Titanium Camera and photoGallery
- (void)imagePickerController:(UIImagePickerController *)picker_ didFinishPickingMediaWithInfo:(NSDictionary *)editingInfo
{
// ...
// ...
NSDictionary *metadataDictionary =
(NSDictionary *)[editingInfo valueForKey:UIImagePickerControllerMediaMetadata];
[dictionary setObject:metadataDictionary forKey:@"metadata"];
[self sendPickerSuccess:dictionary];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment