如何解析同名iPhone的多个标签

时间:2012-07-12 11:04:44

标签: iphone ios4

我有xml http://weather.yahooapis.com/forecastrss?w=20070458&u=c如何解析标签(两次或可能更多)属性日以及更多 ... 谢谢

2 个答案:

答案 0 :(得分:0)

你是iphone编程新手,查看一些xml解析教程和其他..

http://www.raywenderlich.com/553/how-to-chose-the-best-xml-parser-for-your-iphone-project

http://www.raywenderlich.com/725/how-to-read-and-write-xml-documents-with-gdataxml

这是一个使用GDataXML解析器的示例应用程序..

http://db.tt/qoERN0LB

答案 1 :(得分:0)

获取NSMutableArray并在方法didEndElement方法中找到与要求相同的元素名称时添加对象

<强>编辑

didStartElement:方法

中添加此代码
if([elementname isEqualToString:@"yweather"]){
   [yourmutableArray addObject:attributeDict]
}