使用 touchXML 解析此文件 XML
我有这个 XML 文件:
<continents>
<continent1 id="EUR" name="EUROPE"></continent1>
<continent2 id="AME" name="AMERICA"></continent2>
</continents>
我尝试使用 NSXMLParser 制作它,但我无法同时显示结果,我会尝试使用 touchXML 有人可以帮助我吗? 谢谢。
I have this XML file:
<continents>
<continent1 id="EUR" name="EUROPE"></continent1>
<continent2 id="AME" name="AMERICA"></continent2>
</continents>
I tried make it with NSXMLParser, but I cannot show the results in the same time, I would try it with touchXML someone can help me?
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“欧洲”和“美洲”是您的标签的属性。标签中定义为“名称”的属性。您确实应该熟悉 NSXMLParser 及其解析的事件驱动方法。基本上,您创建一个 NSObject 子类作为 NSXMLParser 的委托,当它遇到元素时,它会调用自定义对象上的委托方法。这个非常简单的 XML 是一个完美的学习示例。例如。
这段代码使用了ARC。
SimpleExampleParse.h:
SimpleExampleParse.m:
此类的使用方式如下:
日志的输出将是:
请既然您面前有一些正在工作的东西,请花时间研究它并检查它是如何工作的有用。
"Europe" and "America" are attributes of your tags. Attributes defined as "name" in the tag. You really should get familiar with
NSXMLParser
and the event driven method in which it parses. Basically you create anNSObject
subclass to be the delegate of theNSXMLParser
and as it encounters elements it calls delegate methods on your custom object. And this very simple XML is a perfect example to learn. For example.This code uses ARC.
SimpleExampleParse.h:
SimpleExampleParse.m:
This class is used like this:
The output from the log will be:
Please now that you have something working in front of you take the time to study it and examine how it works.