I am trying to detect when a UISwitch it on / off
// .h
IBOutlet UISwitch *privateSwitch;
@property (nonatomic, retain) IBOutlet UISwitch *privateSwitch;
//.m
@synthesize privateSwitch;
privateSwitch = [[UISwitch alloc] init];
howToDisplay = @"no";
// In my cellForRowsAtIndexPath
UISwitch *privateSwitch = [[UISwitch alloc] initWithFrame:CGRectMake(199, 8, 0, 0)];
[privateSwitch addTarget:self action:@selector(switchToggled:) forControlEvents: UIControlEventTouchUpInside];
[cell.contentView addSubview:privateSwitch];
if ([howToDisplay isEqualToString:@"no"]) {
[privateSwitch setOn:NO animated:NO];
} else {
[privateSwitch setOn:YES animated:NO];
}
- (void) switchToggled:(id)sender {
if ([privateSwitch isOn]) {
NSLog(@"its on!");
howToDisplay = @"yes";
[formDataTwo removeAllObjects];
[formTableView reloadData];
[privateSwitch setOn:YES animated:YES];
} else {
NSLog(@"its off!");
howToDisplay = @"no";
[formDataTwo removeAllObjects];
[formDataTwo addObject:@"Facebook"];
[formDataTwo addObject:@"Twitter"];
[formDataTwo addObject:@"Flickr"];
[formDataTwo addObject:@"Tumblr"];
[formDataTwo addObject:@"Email"];
[formDataTwo addObject:@"MMS"];
[formTableView reloadData];
[privateSwitch setOn:NO animated:YES];
}
}
However, when I switch it on, it will say it's off. What gives?
Thanks.
In your cellForRowsAtIndexPath
method you are declaring a local variable UISwitch *privateSwitch
that is hiding your instance variable privateSwitch
.
In your switchToggled:
action, you are using your instance variable to test the state of the switch, not the one declared in cellForRowAtIndexPath
. You can use the sender
parameter like this:
- (void) switchToggled:(id)sender {
UISwitch *mySwitch = (UISwitch *)sender;
if ([mySwitch isOn]) {
NSLog(@"its on!");
} else {
NSLog(@"its off!");
}
}
P.S: I would use UIControlEventValueChanged
instead of UIControlEventTouchUpInside
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With