iphone – Xcode创建中的plist

iphone – Xcode创建中的plist,第1张

概述当我为下面的链接创建一个简单的plist应用程序时: http://iosdevelopertips.com/data-file-management/reading-a-plist-into-an-nsarray.html 当我调试它..我正在获取我的plist文件的路径.但是当我使用以下声明时 // Build the array from the plist NSMutableArray 当我为下面的链接创建一个简单的pList应用程序时:

http://iosdevelopertips.com/data-file-management/reading-a-plist-into-an-nsarray.html

当我调试它..我正在获取我的pList文件的路径.但是当我使用以下声明时

// Build the array from the pList  NSMutableArray *array2 = [[NSMutableArray alloc] initWithContentsOffile:path];

我在array2中没有任何价值……可能是什么问题?

解决方法 这是我得到的最终解决方案….

当您使用第一个元素作为Array创建pList文件时,其XML内容将如下所示:

<?xml version="1.0" enCoding="UTF-8"?><!DOCTYPE pList PUBliC "-//Apple//DTD PList 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"><pList version="1.0"><dict>    <key>Root</key>    <array>        <string>Firecracker</string>        <string>Lemon Drop</string>        <string>Mojito</string>    </array></dict></pList>

在这里你有不必要的标签,而不是我们应该拥有的,因为你的根元素必须是数组…因为你正在接受NSMutableArray对象……

所以你的pList文件必须是这样的

<?xml version="1.0" enCoding="UTF-8"?><!DOCTYPE pList PUBliC "-//Apple//DTD PList 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"><pList version="1.0">    <array>        <string>Firecracker</string>        <string>Lemon Drop</string>        <string>Mojito</string>    </array></pList>

我检查过它的工作正常……

总结

以上是内存溢出为你收集整理的iphone – Xcode创建中的plist全部内容,希望文章能够帮你解决iphone – Xcode创建中的plist所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1000164.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存