/NSXMLParserExample/NSXMLParserExample/Parser.h
C Header | 16 lines | 5 code | 4 blank | 7 comment | 0 complexity | f7286fda6687d5074e984fb132d83ce4 MD5 | raw file
1// 2// Parser.h 3// NSXMLParserExample 4// 5// Created by Raul Zuniga on 4/27/12. 6// Copyright (c) 2012 Accenture. All rights reserved. 7// 8 9#import <Foundation/Foundation.h> 10 11@interface Parser : NSObject <NSXMLParserDelegate> 12 13@property (nonatomic, strong) NSXMLParser *parser; 14@property (nonatomic, strong) NSMutableString *element; 15 16@end