如何从 XML 元素获取属性
我已经构建了 XML 文件的 XML 树结构。我能够追踪整棵树。
当我想要检索元素的属性时,它会以 NSXMLAttributeKind
类型的 NSXMlNode 返回。如何提取属性节点中的键值对。
I have constructed an XML tree structure of an XML file. I am able to trace the entire tree.
When i want to retrieve the attributes of an element, it is returning as NSXMlNode of kind NSXMLAttributeKind
. How can i extract the key value pairs in the attribute node.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NSXMLNode 的名称和值由方法 名称 和 stringValue 。对于属性节点,这些是属性名称和值。
NSXMLElement 的属性由方法 属性,或者可以使用方法 attributeForName:。
The name and value of a NSXMLNode are given by methods name and stringValue respectively. For an attribute node, these are the attibute name and value.
The attributes of a NSXMLElement are given by method attributes, or a particular attribute can be accessed by name with method attributeForName:.