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