/NSXMLParserExample/NSXMLParserExample/Parser.h

http://github.com/rzuniga64/objectiveC · 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. #import <Foundation/Foundation.h>
  9. @interface Parser : NSObject <NSXMLParserDelegate>
  10. @property (nonatomic, strong) NSXMLParser *parser;
  11. @property (nonatomic, strong) NSMutableString *element;
  12. @end