如何使用 XMLParser 解析 google 天气 xml
我想使用 NSXML 解析 google 天气 API,所以请指导我。网址如下所示:http://www.google.com/ig/api?weather=islamabad 。我可以解析“标记”xml 中的数据,但此 URL 中使用的 xml 结构对我来说无法理解。请帮忙。
i want to parse google weather API using NSXML so please guide me for this. URL looks like: http://www.google.com/ig/api?weather=islamabad. I can parse data from "tagged" xml, but the xml structure used in this URL is not understandable to me. Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该检查 NSXMLParserDeleagte 的文档:
attributeDict - 正是您所需要的。例如,对于标签:
attributeDict 将包含 6 个键:module_id、tab_id、mobile_row、mobile_zipped、row、section 以及适当的值。
You should check docs for NSXMLParserDeleagte:
attributeDict - is exactly what you need. For example for tag:
attributeDict would contain 6 keys: module_id, tab_id, mobile_row, mobile_zipped, row, section with appropriate values.