是否可以在照片库中获取完整的照片信息,例如保存照片的日期和时间。我发现我们可以使用断言库从照片库中获取所有照片是否有任何课程可以获得照片完整信息。
答案 0 :(得分:0)
您需要使用Assets
库和UIImagePickerController
。我会把一些代码作为采样器。
NSMutableDictionary *imageMetadata = nil;
NSURL *assetURL = [info objectForKey:UIImagePickerControllerReferenceURL];
ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];
[library assetForURL:assetURL
resultBlock:^(ALAsset *asset) {
NSDictionary *metadata = asset.defaultRepresentation.metadata;
imageMetadata = [[NSMutableDictionary alloc] initWithDictionary:metadata];
[self addEntriesFromDictionary:metadata];
}
failureBlock:^(NSError *error) {
}];
[library autorelease];