我们如何在 Xcode 项目中创建自己的 plist 文件?
我想在我的应用程序中创建“UrlPaths.plist”文件以及一个包含 4 或 5 个对象的字典。请帮我创建一个 plist 文件和字典。并从该 plist 文件中读取数据。
我希望 plist 将文件添加到资源文件夹中,并且当时我也想添加字典。我不希望实用地创建 plist,但我希望实用地读取数据。
I want to create "UrlPaths.plist" file in my Application and also a dictionary with 4 or 5 objects. Please help me create a plist file and dictionary. And also read data from that plist file.
I want the plist to add the file to resources folder and i want to add Dictionary at that time also.i dont want pragmatical creation of plist but i want reading the data is pragmatically.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您打算不以编程方式创建 Plist,请按照以下步骤操作:
这将添加到您的项目中。
If you are about to create Plist without programmatically then follow these steps :
This gets added to your project.
我们可以对 plist 进行简单的了解,如下
现在您可以读取如下数据
We can get simple understanding about plist as below
Now you can read this data as below
创建新的 plist 文件 -
从此 plist 文件中读取数据 -
您应该阅读有关 plist 文件的这篇精彩的评论 - http://www.edumobile.org/iphone/iphone-programming-tutorials/how-to-use-plist-in-iphone/
create new plist file -
Read data from this plist file -
you should read this great tut on plist files - http://www.edumobile.org/iphone/iphone-programming-tutorials/how-to-use-plist-in-iphone/