0
A
답변
1
당신은 ALAsset library를 사용할 수는 ALAssetPropertyDate라는 속성이 포함되어 있습니다.
NSURL *url = @"your url";
ALAssetsLibrary* assetslibrary = [[ALAssetsLibrary alloc] init];
[assetslibrary assetForURL:url
resultBlock:^(ALAsset *asset) {
NSDate *myDate = [asset valueForProperty:ALAssetPropertyDate];
NSLog(@"Date: %@", myDate);
} failureBlock:^(NSError *error) {
NSLog(@"Error");
}];
보기 여기 http://stackoverflow.com/questions/12478502/how-to-get-image-metadata-in-ios – shannoga