当我为下面的链接创建一个简单的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>
我检查过它的工作正常……