如何使用NSXMLParser查找1个元素

时间:2012-12-08 21:52:54

标签: iphone objective-c ios nsxmlparser

我在网上搜了好几天了,但我找不到答案。我想制作一个简单的练习天气应用程序,显示硬编码的邮政编码的温度。

这是XML

<data>
<request>
<type>Zipcode</type>
<query>08003</query>
</request>
<current_condition>
<observation_time>08:29 PM</observation_time>
<temp_C>11</temp_C>
<temp_F>52</temp_F>
<weatherCode>143</weatherCode>
<weatherIconUrl>
<![CDATA[
http://www.worldweatheronline.com/images/wsymbols01_png_64/wsymbol_0006_mist.png
]]>
</weatherIconUrl>
<weatherDesc>
<![CDATA[ Mist ]]>
</weatherDesc>
<windspeedMiles>4</windspeedMiles>
<windspeedKmph>7</windspeedKmph>
<winddirDegree>210</winddirDegree>
<winddir16Point>SSW</winddir16Point>
<precipMM>0.0</precipMM>
<humidity>87</humidity>
<visibility>5</visibility>
<pressure>1013</pressure>
<cloudcover>100</cloudcover>
</current_condition>
<weather>
<date>2012-12-08</date>
<tempMaxC>13</tempMaxC>
<tempMaxF>55</tempMaxF>
<tempMinC>9</tempMinC>
<tempMinF>48</tempMinF>
<windspeedMiles>6</windspeedMiles>
<windspeedKmph>9</windspeedKmph>
<winddirection>W</winddirection>
<winddir16Point>W</winddir16Point>
<winddirDegree>260</winddirDegree>
<weatherCode>122</weatherCode>
<weatherIconUrl>
<![CDATA[
http://www.worldweatheronline.com/images/wsymbols01_png_64/wsymbol_0004_black_low_cloud.png
]]>
</weatherIconUrl>
<weatherDesc>
<![CDATA[ Overcast ]]>
</weatherDesc>
<precipMM>3.1</precipMM>
</weather>
</data>

我想要做的就是提取* temp_F *并将其存储在NSString中。

2 个答案:

答案 0 :(得分:2)

如果你想要的只是一个只在XML中出现一次的单个元素的值,那么我会做一些简单的字符串搜索,而不是烦扰一个完整的XML解析器。

获取子串@"<temp_F>"和子串@"</temp_F>"的范围,并获取其间的值。

答案 1 :(得分:1)

既然你已经提到过使用NSXMLParser,那就去吧。设置您的代理以实现协议

 @interface MyClass : NSObject <NSXMLParserDelegate>

请注意xml条目的开头标记(在这种情况下看起来像是

 - (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName attributes:(NSDictionary *)attributeDict {

      if ( [elementName isEqualToString:@"temp_F"] ) {
           // Set flag and reset string
           self.foundTargetElement = true;
           if ( self.myMutableString ) {
                self.myMutableString = nil;
                self.myMutableString = [[NSMutableString alloc] init];
           }
      }
 }

下一步实施

 - (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string {
       if ( self.foundTargetElement ) {
             [self.myMutableString appendString:string];
       }     
 }

并使用与上面相同的模式,注意您的标记,()并将其值附加到您的字符串,或者对数据执行任何其他操作:

 - (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName {

      self.foundTargetElement = false;

      // Do something with your result, or
      // Wait until entire document has been parsed.
 }

如果有效,请告诉我。