我在我的应用中运行我的声音文件,并检查他们的修改日期, 我可以看到我得到4个具有相同日期和时间的文件(秒数!)。 怎么可能我有一些文件具有相同的修改时间 - 但是确切的时间。 (用户在应用程序中记录的声音)。
for(int i=0;i<size+1;i++ )
{
NSString *path = [docsDir1 stringByAppendingPathComponent:[NSString stringWithFormat:@"sound%d.caf",[memoryInstnace getSoundsByOrderInArray][i]]];
NSDictionary* fileAttribs = [[NSFileManager defaultManager] attributesOfItemAtPath:path error:nil];
NSDate *result = [fileAttribs fileModificationDate];
[arrayOfDates addObject:result];
arrayOfDates
有4个相同的日期(!)[memoryInstnace getSoundsByOrderInArray][i]
不同!)我在这里做错了什么?
非常感谢。