作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道如何获取“World 1”>“Act 1”>“Dungeon 1”中的 name、monsterLevel 和 monsterQueue 的实际值,但我似乎不知道如何返回文本介于 <key>
之间的“世界 1”我的<dict>
.
<?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>World 1</key>
<dict>
<key>Act 1</key>
<dict>
<key>Dungeon 1</key>
<dict>
<key>name</key>
<string>d1name</string>
<key>monsterLevel</key>
<string>1</string>
<key>monsterQueue</key>
<string>0;0;0;0</string>
</dict>
<key>Dungeon 2</key>
<dict>
<key>name</key>
<string>d2name</string>
<key>monsterLevel</key>
<string>2</string>
<key>monsterQueue</key>
<string>1;1;1;1</string>
</dict>
</dict>
</dict>
</dict>
最佳答案
听起来您想要 key 中包含的字符串?如果是这样,您可以使用以下方法获取字典的键:
NSArray* keys = [myDictionary allKeys];
或者,如果您只需要特定对象的键,您可以使用:
NSArray* keys = [myDictionary allKeysForObject:someObject];
关于cocoa - 如何从 plist 返回字典名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8935665/
我是一名优秀的程序员,十分优秀!