如何更新 plist 中的名称?
<plist version="1.0">
<dict>
<key>accounts</key>
<array>
<dict>
<key>name</key>
<string>OLDNAME</string>
</dict>
</array>
</dict>
这是 plist 文件
<plist version="1.0">
<dict>
<key>accounts</key>
<array>
<dict>
<key>name</key>
<string>OLDNAME</string>
</dict>
</array>
</dict>
This is The plist File
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许这太明显了,但您可以使用以下方法来修改它:
操作 plist 中存储的字典的终极解决方案:
希望您能根据自己的需要采用此代码示例。
...好吧,我知道这里是您的特定 plist 结构的代码示例:
Maybe It will be too obviously but you can use following ways to modify it:
Ultimate solution for manipulating dictionaries stored in plists:
Hope you will adopt this code sample for your own needs.
... Ok, I got it here is a code sample for your particular plist structure:
Apple 有大量关于该主题的文档。
这是应该有所帮助的:
http://developer .apple.com/library/mac/#documentation/CoreFoundation/Conceptual/CFPropertyLists/CFPropertyLists.html
Apple has plenty of docs on the topic.
Here is one that should help:
http://developer.apple.com/library/mac/#documentation/CoreFoundation/Conceptual/CFPropertyLists/CFPropertyLists.html