123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #import <Foundation/Foundation.h>
- #import "OCFileDto.h"
- @interface NCXMLListParser : NSObject <NSXMLParserDelegate> {
-
- BOOL isNotFirstFileOfList;
- }
- @property BOOL controlFirstFileOfList;
- @property (nonatomic, strong) NSMutableArray *list;
- @property (nonatomic, strong) OCFileDto *currentFile;
- @property (nonatomic, strong) NSMutableString *xmlChars;
- @property (nonatomic, strong) NSString *status;
- - (void)initParserWithData:(NSData *)data controlFirstFileOfList:(BOOL)controlFirstFileOfList;
- @end
|