I have this in my view controller:
[[[UIApplication sharedApplication] delegate] sendMessageAsSingleObject:[sender currentTitle]];
Which gives me this warning:
warning: '-sendMessageAsSingleObject:' not found in protocol(s)
But in my AppDelegate i have the method declared in the header...
I should add that the call works, just want to get rid of the warnings.
Thanks