You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
745 B

//
// MOBFXmlNode.h
// MOBFoundation
//
// Created by fenghj on 15/9/17.
// Copyright © 2015年 MOB. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
* XML节点
*/
@interface MOBFXmlNode : NSObject
/**
*
*/
@property (nonatomic, weak) MOBFXmlNode *parentNode;
/**
*
*/
@property (nonatomic, copy) NSString *name;
/**
*
*/
@property (nonatomic, strong, readonly) NSMutableDictionary *attributes;
/**
*
*/
@property (nonatomic, strong, readonly) NSMutableArray *children;
/**
*
*/
@property (nonatomic, copy) NSString *text;
/**
*
*
* @return
*/
- (NSDictionary *)dictionaryValue;
@end