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:
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];