IPAD xml解析与属性处理
<category name="Local">
…
…
…
<category name="business">
…
…
…
<category name="politics">
…
…
…
这是我的 xml 文件,我不知道如何处理我正在使用 NSXMLParser 的属性。我的问题是如何在 NSXMLParser 中处理上述属性。请帮我。提前致谢。
<category name="Local">
…
…
…
<category name="business">
…
…
…
<category name="politics">
…
…
…
This is my xml file, I'm not sure how to deal with attribute i am using NSXMLParser. My question is how to deal with above attributes in NSXMLParser. Please help me. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该查看 解析器:didStartElement:命名空间URI:限定名称:属性:。然后,名称将出现在属性字典中。
编辑:
如果以下内容对您没有帮助,您应该阅读一些介绍内容。
You should have a look at parser:didStartElement:namespaceURI:qualifiedName:attributes:. The names are then in the attributes dictionary.
Edit:
If the following doesn't help you, you should read some introduction stuff.