【文件属性】:
文件名称:Objective-c解析XML封装
文件大小:3KB
文件格式:RAR
更新时间:2014-10-19 05:13:08
XML Objective-c 封装
1 获取XML的数据DATA
2 调用解析类,提供对象名。
3 返回NSMutableDictionary或者NSMutableArray,键值封装。
示例见最后的注释。
XML封装类待续。。。
转载请注明来源,谢谢
======
XmlResolve.h
#import
@interface XmlResolve : NSObject {
}
@property (nonatomic, retain)NSString *objName;
@property BOOL *isList;
@property (nonatomic, retain) NSMutableString *currentResult;
@property (nonatomic, retain) NSMutableDictionary *map;
@property (nonatomic, retain) NSMutableArray *list;
-(NSMutableDictionary *)getObject:(NSString *)elName xmlData:(NSData *)xmlData;
-(NSMutableArray *)getList:(NSString *)elName xmlData:(NSData *)xmlData;
@end
---
XmlResolve.m
#import "XmlResolve.h"
@implementation XmlResolve
@synthesize objName;
@synthesize isList;
@synthesize currentResult;
@synthesize map;
@synthesize list;
********0..........
【文件预览】:
未命名.rtf
XmlResolve.h
XmlResolve.m