I've set a switch on my overlay, which appears every time my app launches the camera. The switch appears, which is fine. But how do I create the if conditions to command the switch to perform an action when on or off?
//This is the overlay.
- (UIView*)CommomOverlay {
UISwitch *mySwitch = [[UISwitch alloc] initWithFrame:CGRectMake (30,400,20,20)];
[mySwitch addTarget:self action:@selector(mySwitch)
forControlEvents:UIControlEventAllTouchEvents];
[view addSubview:mySwitch];
return view;
}
So the switch appears on the overlay, but how do I command it do something when called?
I've tried the following
-(void)mySwitch {
if ([mySwitch.on]){
execute this..
}
}
But the above doesn't work. I get an error saying "undeclared identifier, did you mean UISwitch?". So then I replace mySwitch.on with UISwitch.on, then it says " property on not found on object of type UISwitch".
I just want to execute my if else method properly. I made the overlay, I made the switch code and it appears on the overly perfectly. But now I want it to do something with an if/else condition. How do I rectify this?
What did I do wrong?