changhong/xcode/Libraries/Plugins/iOS/SDKExport/lib/ApiXml.h

32 lines
803 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#import <Foundation/Foundation.h>
/*
XML 解析库api说明
//============================================================================
//输入参数为xml格式串初始化解析器
-(void)startParse:(NSData *)data;
//获取解析后的字典
-(NSMutableDictionary*) getDict;
//============================================================================
*/
@interface XMLHelper : NSObject<NSXMLParserDelegate> {
//解析器
NSXMLParser *xmlParser;
//解析元素
NSMutableArray *xmlElements;
//解析结果
NSMutableDictionary *dictionary;
//临时串变量
NSMutableString *contentString;
}
//输入参数为xml格式串初始化解析器
-(void)startParse:(NSData *)data;
//获取解析后的字典
-(NSMutableDictionary*) getDict;
@end