Iphone 查看Plist文件的上次编辑信息

Iphone 查看Plist文件的上次编辑信息,iphone,plist,editing,Iphone,Plist,Editing,有没有办法从文件中获取上次编辑的时间?我在下载到我的应用程序的服务器上有一个pList。我想看看上次编辑的时间。我是否必须实现特定的密钥,或者您可以从应用程序中查看pLists信息?以下是答案: NSString *pathName; //assuming you already have this NSDictionary *fileAttributes = [[NSFileManager defaultManager]attributesOfItemAtPath:pathName error

有没有办法从文件中获取上次编辑的时间?我在下载到我的应用程序的服务器上有一个pList。我想看看上次编辑的时间。我是否必须实现特定的密钥,或者您可以从应用程序中查看pLists信息?

以下是答案:

NSString *pathName; //assuming you already have this
NSDictionary *fileAttributes = [[NSFileManager defaultManager]attributesOfItemAtPath:pathName error:nil];
NSDate *editDate = [fileAttributes objectForKey:NSFileModificationDate];
答案如下:

NSString *pathName; //assuming you already have this
NSDictionary *fileAttributes = [[NSFileManager defaultManager]attributesOfItemAtPath:pathName error:nil];
NSDate *editDate = [fileAttributes objectForKey:NSFileModificationDate];

出差,周末回家试一试……出差,周末回家试一试。。。