How to call content of a parsed (NSXMLParser) xml from another class? Code review?
问题 I am trying to give the contents of a parsed xml file in the view Controller. How can i do it when the content of the node string is. xml file is like this: <XML> <Data> <ID_Number>8</ID_Number> <Date> 13.12.2009</Date> <Time> 17:50:00</Time> <Temperature> 37.2 </Temperature> <Speed>34.2</Speed> <Direction>90.4</Direction> <AirPressure>1040.3</AirPressure> </Data> </XML> My Parser in .h file @interface Parser : NSObject @property ( nonatomic,strong) NSMutableString *mutableTemperatureValue;