我有一些奇怪的问题。
我无法从应用程序 mainbundle 中读取 plist 文件
该文件位于“复制捆绑资源”中
但不知何故无法读取
这是代码
NSLog(@"%@",[[NSBundle mainBundle] pathForResource:@"8chk" ofType:@"plist"]);
它一直打印(空)
这是屏幕截图
谁能告诉我发生了什么事?
恐怕要说,您没有将其添加8chk.plist
到您的目标中。
在项目中再次拖放 plist 文件,确保在将文件添加到项目时勾选复选框,即“在 ProjectName 中复制文件”
然后使用此代码使其可访问并从 plist 读取值
NSString *path = [[NSBundle mainBundle] pathForResource: @"YourPLIST" ofType: @"plist"];
NSDictionary *dict = [NSDictionary dictionaryWithContentsOfFile: path];
[id obj = [dict objectForKey: @"YourKey"];
或者
// Reads the value of the custom key you added to the Info.plist
NSString *value = [mainBundle objectForInfoDictionaryKey:@"key"];
//Log the value
NSLog(@"Value = %@", value);
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *path = [documentsDirectory stringByAppendingPathComponent:@"Info.plist"];
这可能会奏效。确保将 plist 复制到目标并将其放在根目录中。您也可以尝试将 plist 文件放在保存应用程序默认 plist 的位置。
:)
你的路径是错误的。copy bundle resource
应该只是8chk.plist
,8chk.plist ..in resources/8chk
如果项目导航器显示正确的树,则不是。
嗨,Shoeb Amin,请检查您的 plist 文件是否添加到 Target->Copy Bundle 资源中