My AppDelegate_Phone class has the method -(void)doSomething
. How can I call that from within a View Controller viewController
?
I've tried:
[[[UIApplication sharedApplication] delegate] doSomething];
No luck.
doSomething not found in protocol
Edit. The action is being performed, but the Warning persists in XCode. What does the warning mean?