使用 TouchXML 的 ASIHTTPRequest 示例
我目前正在使用 NSXMLParser 方法来解析我的数据,如下所示: 但我发现了一些不错的选择,例如 TouchXML 。
我在 google 上搜索了一些很好的示例或教程
,但我无法理解 XPathquery 格式和解析循环,如 示例
或此 问题
我只是想知道如何解析这样一个简单的xml文档:
<ElementsArray>
<ElementObject>
<element1></element1>
<element2></element1>
<ElementObject>
.
.
.
<ElementArray>
谁能给我示例代码或者链接也很有用。
I am currently using NSXMLParser mathods to parse my data something like this :
But I found some good option as TouchXML .
I googled for some good example or tutorial
But I can't understand the XPathquery format and the parsing loops as done in this example
or this question
I just want to know how to parse a simple xml document like this :
<ElementsArray>
<ElementObject>
<element1></element1>
<element2></element1>
<ElementObject>
.
.
.
<ElementArray>
so can anyone give me example code or a link will also be useful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 TouchXML 最酷的部分是,您可以使用 NSXML 的 Apple 文档,只需将 NS 替换为 C。因此,NSXMLDocument 是 CXMLDocument,NSXMLNode 是 CXMLNode,依此类推。只需查看 Apple 的 Apple 的基于树的 XML 编程指南 获取示例代码,您应该很好地了解如何在 XML 文档中使用 TouchXML。 查询 XML 文档部分应该为您提供有效使用 XPath 所需的内容。
The coolest part of using TouchXML is that you can use the Apple documentation for NSXML and simply replace the NS with C. So an NSXMLDocument is a CXMLDocument and an NSXMLNode is a CXMLNode, and so on. Just look at the Tree-Based XML Programming Guide from Apple for sample code and you should get a pretty good idea of how to use TouchXML with your XML documents. The section Querying an XML Document should give you what you need to use XPath effectively.