我正在使用以下代码来阅读plist的详细信息,
NSString *plistPath = @"~/Library/Preferences/com.apple.desktop.plist";
NSDictionary *plistData = [NSDictionary dictionaryWithContentsOfFile:plistPath];
但是plistData没有条目。
上面的代码有什么问题吗?
答案 0 :(得分:2)
您需要扩展代字号。试试这个:
NSString * plistPath = [@"~/Library/Preferences/com.apple.desktop.plist" stringByExpandingTildeInPath];