MyAppDelegate *appD;
appD = [UIApplication sharedApplication];
if(appD.sw1.on)
NSLog(@"It is ON");
else
NSLog(@"It is OFF");
Error compiling. It works without warning, but it does not work.
I do not understand what the problem is.
...
EDIT:
OMG, should also have called a delegation method:
appD = (MyAppDelegate *)[[UIApplication sharedApplication] delegate];
source
share