问题描述
编辑
现在已修复
我遇到了很多面临同样问题的用户,可能是 UISwitch
所以我刚刚发现它的临时解决方案。我找到了一个 gitHub
自定义 KLSwitch
现在使用此希望苹果将在xCode的下一次更新中修复此问题: -
https://github.com/KieranLafferty/KLSwitch
Edit
It's now fixed on ios7.1
Don't do any tweak to fix it.
Edit2
Apparently the same problem happens again in iOS 8.0 and 8.1
Edit3
It's now fixed on ios9.2
Don't do any tweak to fix it.
Hi Today i seen in UISwitch's
Event ValueChanged:
Calling continuously
while i am change to On
to Off
or Off
to On and my finger moved still on right side as well as left side. I atteched GIF image for more clear with NSLog.
My Value Changed Method is:
- (IBAction)changeSwitch:(id)sender{
if([sender isOn]){
NSLog(@"Switch is ON");
} else{
NSLog(@"Switch is OFF");
}
}
iOS6 the same code of Switch working Fine as we expectation:
so can anyone suggest me that call only one time its state On or off. or is this is a bug or what..?
UPDATE
Here it is my Demo of it:
I got many user that facing same issue so may be this is bug of UISwitch
so i found just now for temporary solution of it. I Found one gitHub
custom KLSwitch
use this for now hope apple will fix this in next update of xCode:-
https://github.com/KieranLafferty/KLSwitch
这篇关于iOS7 UISwitch它的Event ValueChanged:连续调用这个Bug还是什么..?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!