ApiXml.h 803 B

12345678910111213141516171819202122232425262728293031
  1. #import <Foundation/Foundation.h>
  2. /*
  3. XML 解析库api说明:
  4. //============================================================================
  5. //输入参数为xml格式串,初始化解析器
  6. -(void)startParse:(NSData *)data;
  7. //获取解析后的字典
  8. -(NSMutableDictionary*) getDict;
  9. //============================================================================
  10. */
  11. @interface XMLHelper : NSObject<NSXMLParserDelegate> {
  12. //解析器
  13. NSXMLParser *xmlParser;
  14. //解析元素
  15. NSMutableArray *xmlElements;
  16. //解析结果
  17. NSMutableDictionary *dictionary;
  18. //临时串变量
  19. NSMutableString *contentString;
  20. }
  21. //输入参数为xml格式串,初始化解析器
  22. -(void)startParse:(NSData *)data;
  23. //获取解析后的字典
  24. -(NSMutableDictionary*) getDict;
  25. @end