从ALAsset检索添加到库的日期?

时间:2014-07-24 02:37:51

标签: ios objective-c alassetslibrary alasset

有没有办法检索从ALAsset对象将图像或视频添加到设备的照片库的日期?如果图像的元数据包含“created_at”日期,则ALAssetPropertyDate会使用此日期,并且似乎无法获得将照片添加到设备的实际日期。

1 个答案:

答案 0 :(得分:0)

ALAssetPropertyDate返回图像保存的日期/时间。

请使用NSDateFormatter并尝试一下。

NSDate *date = [result valueForProperty:ALAssetPropertyDate];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setLocale:[NSLocale currentLocale]];
[dateFormatter setDateFormat:@"dd-mm-yyyy hh:mm:ss ZZZ"];
NSString *stringDate = [dateFormatter stringFromDate:date];
NSLog(@"%@", stringDate);

或试试这个

ALAssetRepresentation *assetRep = [result defaultRepresentation];
NSDictionary *dictionaryOfMetaData = [assetRep metadata];
NSLog(@"dictionary:%@ \n \ date:%@ \n \ StringDate:%@", [[dictionaryOfMetaData valueForKey:@"{TIFF}"] valueForKey:@"DateTime"], date, stringDate);