如何使用 NSXMLParser 将标签名称和值添加到 NSMutableDictionary
我想要实现的目标是,拥有这样的 XML 结构:
<parent>
<nodename1>NodeText1</nodename1>
<nodename2>NodeText2</nodename2>
...
<nodenamex>NodeTextx</nodenamex>
</parent>
在解析时,将其设置为 NSMutableDictionary 中的 key=>value 对,其中 key 是节点名称,value 是节点文本。但是,我不知道如何链接它们,因为如果我理解正确的话,节点名会在 didStartElement
中被识别,并且节点文本会在 foundCharacters
中被拾取,对吗?有谁知道该怎么做?我可以发布到目前为止的代码,但它非常基本。
谢谢,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 didStartElement 方法中,当您将节点名称标识为“parent”时,创建一个字典。
在找到的字符中,将值存储在字符串对象中。
在 didEndElement 方法中,如果字符串值(在 findcharacters 中)不为 null,则添加到以键作为元素名称的字典中。现在,释放字符串值并将其赋值为 nil。
In the didStartElement method, when you identify node name as "parent", create a dictionary.
In found characters, store the value in string object.
In didEndElement method, if string value (you have in foundcharacters) is not null then add into a dictionary with key as element name. Now, release the string value and assigned it to nil.