访问应用程序包中的 plist 返回 null
我正在使用之前成功使用过的一段代码将 plist 加载到数组中:
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"species_names" ofType:@"plist"];
NSArray *array = [[NSArray alloc] initWithContentsOfFile:filePath];
initWithContentsOf 文件失败(数组为空,表明它无法在应用程序包中找到 plist)。
在 iPhone 模拟器下,我检查了第一行创建的路径是否指向应用程序文件(确实如此),并使用 Finder 上下文菜单“显示包内容”向自己证明“species_name.plist”实际上位于捆绑包——其长度表明它包含内容,因此它应该可以工作(并且在我编写的其他iOS应用程序中也有)。欢迎提出建议...
[env Xcode 4.2 beta,iOS 4.3.2]。
I'm using a piece of code I've used before with success to load a plist into an array:
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"species_names" ofType:@"plist"];
NSArray *array = [[NSArray alloc] initWithContentsOfFile:filePath];
The initWithContentsOf File is failing (array is null, suggesting it can't find the plist in the app bundle).
Under the iPhone simulator I've checked that the path created by the first line points to the app file (it does), and used the Finder context menu "Show package contants" to prove to myself that "species_name.plist" is actually in the bundle--with a length that suggests it contains stuff, so it should work (and has in other iOS apps I've written). Suggestions most welcome...
[env Xcode 4.2 beta, iOS 4.3.2].
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您应该使用
NSDictionary
实例的initWithContentsOfFile:
方法,而不是NSArray
。这是示例:
或者这个:
编辑
您可以将
NSArray
的initWithContentsOfFile:
方法与使用NSArray
的writeToFile:atomically:
方法创建的文件一起使用。使用writeToFile:atomically:
创建的 Plist 具有以下结构:在 XCode 中创建的 Plist 具有以下结构:
这就是为什么
NSArray
的initWithContentsOfFile:
方法> 不起作用。You should use
initWithContentsOfFile:
method ofNSDictionary
instance, notNSArray
.Here is sample:
Or this:
EDIT
You can use
initWithContentsOfFile:
method ofNSArray
with file created withwriteToFile:atomically:
method ofNSArray
. Plist created withwriteToFile:atomically:
has this stucture:And Plist created in XCode has this stucture:
Thats why
initWithContentsOfFile:
method ofNSArray
dosnt work.此类型的
plist
:或(基本上两者相同)
可以这样读取:
其中
appFeatures
是plist.
(iOS 6.1)
plist
of this type:OR (basically both are same)
Can be read like this:
Where
appFeatures
is name of theplist
.(iOS 6.1)
尝试这个简单的方法:
Try this simple metod: