Created
July 7, 2015 11:19
-
-
Save yomybaby/4449d7b68453bb45947b to your computer and use it in GitHub Desktop.
get exif data from Titanium Camera and photoGallery
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (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