从iPhone SDK中的plist读取数据时出现问题

发布于 2024-09-01 01:20:26 字数 279 浏览 4 评论 0原文

我正在资源文件夹中创建 myDb.plist 文件并尝试读取它,但它没有被读取。我正在使用以下代码。

NSString* plistPath = [[NSBundle mainBundle] pathForResource:@"myDb" ofType:@"plist"];
contentArray = [NSArray arrayWithContentsOfFile:plistPath];

contentArray 显示为空。

我可以尝试什么来解决这个问题?

I'm creating a myDb.plist file in my resources folder and trying to read it, but it's not getting read. I'm using the following code.

NSString* plistPath = [[NSBundle mainBundle] pathForResource:@"myDb" ofType:@"plist"];
contentArray = [NSArray arrayWithContentsOfFile:plistPath];

contentArray is showing null.

What can I try to resolve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自控 2024-09-08 01:20:26

让你的 plist 数据数组而不是字典。字典也可以使用,但我尝试了点击和试用。另外,如果需要的话,打印 NSLog 您的数据以检查 plist 中的输入。

Make your plist data array and not dictionary. Dictionary also works but i tried with hit and trial. Also, print NSLog your data, if in case you need, to check the input from plist.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文