This sounds trivial but I\'m noticing some weirdness. I\'ve wired up a handler for the Value Changed event of a UISwitch. What I would expect is that each time the hand
Get state of switch in handler:
- (void)valueChanged:(UISwitch *)theSwitch { BOOL flag = theSwitch.on; }