Change the line: @interface XMLParserViewController : UIViewController (in your .h file) to:
@interface XMLParserViewController : UIViewController <NSXMLParserDelegate>
You forgot to set your UIViewController as a delegate delegate (if you want).
max_ source share