UISwitch有时候不会改变价值

时间:2015-01-23 17:05:39

标签: ios ios8 uiswitch

https://github.com/john-07/switcher/tree/master

当UISwitch多次切换时,其On / Off标签状态与UISwitch图形元素的状态不一致。

当UISwitch和UITableView放在同一屏幕上时出现错误。如果屏幕上没有UITableView,则不会发生错误。该应用程序在没有电源线的设备上运行。 图片 enter image description here 视频 http://youtu.be/FtQqv7xreRU

-(void)doSwitch:(BOOL)val{
    title.text = val? @"On" : @"Off";
} 

- (IBAction)onValueChanged:(UISwitch*)sender {
    BOOL on = sender.on;
    [self doSwitch:on];
}

0 个答案:

没有答案