How do I remove the alert: "...may not respond to..."

Posted by balexandre on Stack Overflow See other posts from Stack Overflow or by balexandre
Published on 2010-04-11T20:22:20Z Indexed on 2010/04/11 20:33 UTC
Read the original article Hit count: 154

Filed under:
|
|
|

In my .m file I call a method that is inside the same .m file. In the header I have the correct import for the header but I keep getting this alert:

alt text

What am I doing wrong? What should I do in order to make this error disappear? I'm kinda lost here :-(

Even if I changed this to:

NSString *path = [[NSString alloc] 
   initWithString:@"...."];
[self parseXMLFileAtURL:path];
[path release];

© Stack Overflow or respective owner

Related posts about xcode

Related posts about cocoa-touch