0
我正在創建一個插件到另一個應用程序,我想訪問一個plist文件。如何在Mac OS X上閱讀ANOTHER應用程序的plist文件?
我嘗試了以下操作,但無法找到該文件。
NSBundle* bundle = [[NSBundle mainBundle] initWithPath:@"~/Library/Containers/com.Apple.Externalapp/"];
NSString* filePath = [bundle pathForResource:@"container" ofType:@"plist"];
if ([[NSFileManager defaultManager] fileExistsAtPath:filePath]) {
NSLog(@"File exists");
} else {
NSLog(@"File doesn't exist");
}
我在做什麼錯?