XML 解析不使用 nsxmlparser 类的任何委托方法
我不想使用 nsxmlparser 委托方法。我想编写自己的 xml 解析方法。如何解析 xml 文件?
I don't want to use nsxmlparser delegate methods. I want to write my own methods for xml parsing. How can I parse xml file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我真的不明白不使用委托有什么意义。那么,您有 2 个选择:
使用另一个解析器
使用 NSString 方法来分隔标记上的 XML,然后解析它们。
I really don't understand what is the point of not using delegate. Well, you have 2 options:
Use another parser
Use NSString methods to separate your XML on tokens and then parse them.
如果你不想做任何解析,你可以让 NSDictionary 为你做,
If you don't want to do any parsing you can let NSDictionary do it for you,
您绝对没有理由试图避免委托。如果您想避免使用
NSXMLParser
,请尝试基于 DOM 的解析器,例如 TBXML。然而,NSXMLParser
使用起来非常简单。There's absolutely no reason why you should try to avoid the delegate. If you're wanting to avoid
NSXMLParser
, try a DOM-based parser such as TBXML. However,NSXMLParser
is pretty dead-simple to use.您可以使用名为 GDataXMLNode 的 Google lib (https: //code.google.com/p/gdata-objectivec-client/source/browse/trunk/Source/XMLSupport/)。
非常容易使用,与 DOM 非常相似。
并且没有委托 ; )
You can use Google lib called GDataXMLNode (https://code.google.com/p/gdata-objectivec-client/source/browse/trunk/Source/XMLSupport/).
Very easy to use, quite similar to DOM.
And no delegate ; )