iOS7 UISwitch its Event ValueChanged: Calling continuously is this Bug or what..?

IosIphoneIos7Xcode5Uiswitch

Ios Problem Overview


Edit

It's now fixed on [tag: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 [tag: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.

enter image description here

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:

enter image description here

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:

programmatic Add UISwitch

from XIB adding UISwitch

Ios Solutions


Solution 1 - Ios

Please see the following code:

-(void)viewDidLoad
{
    [super viewDidLoad];    
    UISwitch *mySwitch = [[UISwitch alloc] initWithFrame:CGRectMake(130, 235, 0, 0)];    
    [mySwitch addTarget:self action:@selector(changeSwitch:) forControlEvents:UIControlEventValueChanged];
    [self.view addSubview:mySwitch];
}

- (void)changeSwitch:(id)sender{
    if([sender isOn]){
        NSLog(@"Switch is ON");
    } else{
        NSLog(@"Switch is OFF");
    }
}

Solution 2 - Ios

Same bug here. I think I've found a simple workaround. We just have to use a new BOOL that stores the previous state of the UISwitch and an if statement in our IBAction (Value Changed fired) to check that the value of the switch has actually changed.

previousValue = FALSE;

[...]

-(IBAction)mySwitchIBAction {
    if(mySwitch.on == previousValue)
        return;
    // resetting the new switch value to the flag
    previousValue = mySwitch.on;
 }

No more weird behaviors. Hope it helps.

Solution 3 - Ios

You can use the UISwitch's .selected property to make sure your code only executes once when the value actual changes. I think this is a great solution because it avoids having to subclass or add new properties.

 //Add action for `ValueChanged`
 [toggleSwitch addTarget:self action:@selector(switchTwisted:) forControlEvents:UIControlEventValueChanged];

 //Handle action
- (void)switchTwisted:(UISwitch *)twistedSwitch
{
    if ([twistedSwitch isOn] && (![twistedSwitch isSelected]))
    {
        [twistedSwitch setSelected:YES];
        
        //Write code for SwitchON Action
    }
    else if ((![twistedSwitch isOn]) && [twistedSwitch isSelected])
    {
        [twistedSwitch setSelected:NO];
        
        //Write code for SwitchOFF Action
    }
}

And here it is in Swift:

func doToggle(switch: UISwitch) {
    if switch.on && !switch.selected {
        switch.selected = true
        // SWITCH ACTUALLY CHANGED -- DO SOMETHING HERE
    } else {
        switch.selected = false
    }
}

Solution 4 - Ios

If you are using so many switch in your app then there is problem to change the code in all places where t action method of UISwitch is defined.You can make custom switch and handle the events only if value change.

CustomSwitch.h

#import <UIKit/UIKit.h>

@interface Care4TodayCustomSwitch : UISwitch
@end

CustomSwitch.m

@interface CustomSwitch(){
    BOOL previousValue;
}
@end

@implementation CustomSwitch



- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        // Initialization code
        previousValue = self.isOn;
    }
    return self;
}


-(void)awakeFromNib{
    [super awakeFromNib];
    previousValue = self.isOn;
    self.exclusiveTouch = YES;
}


- (void)setOn:(BOOL)on animated:(BOOL)animated{

    [super setOn:on animated:animated];
    previousValue = on;
}


-(void)sendAction:(SEL)action to:(id)target forEvent:(UIEvent *)event{
    
    if(previousValue != self.isOn){
        for (id targetForEvent in [self allTargets]) {
            for (id actionForEvent in [self actionsForTarget:targetForEvent forControlEvent:UIControlEventValueChanged]) {
                [super sendAction:NSSelectorFromString(actionForEvent) to:targetForEvent forEvent:event];
            }
        }
        previousValue = self.isOn;
    }
}

@end

We are ignoring events if the value is same as changed value.Put CustomSwitch in all the class of UISwitch in storyboard.This will resolve the issue and call target only once when value changed

Solution 5 - Ios

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

Solution 6 - Ios

If you don't need to react instantly to the switch's value change the following could be a solution:

- (IBAction)switchChanged:(id)sender {
  [NSObject cancelPreviousPerformRequestsWithTarget:self];

  if ([switch isOn]) {
      [self performSelector:@selector(enable) withObject:nil afterDelay:2];
  } else {
      [self performSelector:@selector(disable) withObject:nil afterDelay:2];
  }
}

Solution 7 - Ios

This issue is still here as of iOS 9.3 beta. If you don't mind the user not being able to drag outside of the switch, I find that using .TouchUpInside rather than .ValueChanged works reliably.

Solution 8 - Ios

I am still facing same problem in iOS 9.2

I got solution and posing as it might help others

  1. Create count variable to trace number of times method got call

     int switchMethodCallCount = 0;
    
  2. Save bool value for switch value

     bool isSwitchOn = No;
    
  3. In Switch's value change method perform desire action for first method call only. When switch value again changes set count value andt bool variable value to default

     - (IBAction)frontCameraCaptureSwitchToggle:(id)sender {
    
    
    
     //This method will be called multiple times if user drags on Switch,
     //But desire action should be perform only on first call of this method
    
    
     //1. 'switchMethodCallCount' variable is maintain to check number of calles to method,
     //2. Action is peform for 'switchMethodCallCount = 1' i.e first call
     //3. When switch value change to another state, 'switchMethodCallCount' is reset and desire action perform
    
     switchMethodCallCount++ ;
    
     //NSLog(@"Count --> %d", switchMethodCallCount);
    
     if (switchMethodCallCount == 1) {
     
     //NSLog(@"**************Perform Acction******************");
     
     isSwitchOn = frontCameraCaptureSwitch.on
    
     [self doStuff];
     
     }
     else
     {
     //NSLog(@"Do not perform");
     
     
     if (frontCameraCaptureSwitch.on != isSwitchOn) {
         
         switchMethodCallCount = 0;
    
         isSwitchOn = frontCameraCaptureSwitch.on
         
         //NSLog(@"Count again start");
         
         //call value change method again 
         [self frontCameraCaptureSwitchToggle:frontCameraCaptureSwitch];
         
         
         }
     }
    
    
     }
    

Solution 9 - Ios

This problem plagues me when I tie the switch to other behaviors. Generally things don't like to go from on to on. Here's my simple solution:

@interface MyView : UIView
@parameter (assign) BOOL lastSwitchState;
@parameter (strong) IBOutlet UISwitch *mySwitch;
@end

@implementation MyView

// Standard stuff goes here

- (void)mySetupMethodThatsCalledWhenever
{
    [self.mySwitch addTarget:self action:@selector(switchToggled:) forControlEvents:UIControlEventValueChanged];
}

- (void)switchToggled:(UISwitch *)someSwitch
{
    BOOL newSwitchState = self.mySwitch.on;
    if (newSwitchState == self.lastSwitchState)
    {
        return;
    }
    self.lastSwitchState = newSwitchState;

    // Do your thing
}

Just be sure to also set self.lastSwitchState every time you manually change mySwitch.on! :)

Solution 10 - Ios

This type of problem is often caused by ValueChanged. You don't need to press the button to cause the function to run. It's not a touch event. Every time you programmatically change the switch to on/off, the value changes and it calls the IBAction function again.

@RoNiT had the right answer with:

Swift

func doToggle(switch: UISwitch) {
    if switch.on && !switch.selected {
        switch.selected = true
        // SWITCH ACTUALLY CHANGED -- DO SOMETHING HERE
    } else {
        switch.selected = false
    }
}

Solution 11 - Ios

DispatchQueue.main.async {
        self.mySwitch.setOn(false, animated: true)
    }

This works fine and doesn't calls the selector function again.

Solution 12 - Ios

This worked for me.

DispatchQueue.main.asyncAfter(deadline: DispatchTime.now()){
    self.switch.isOn = true
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionNitin GohelView Question on Stackoverflow
Solution 1 - IosAeroStarView Answer on Stackoverflow
Solution 2 - IosnnarayannView Answer on Stackoverflow
Solution 3 - Iositsji10draView Answer on Stackoverflow
Solution 4 - IoscodesterView Answer on Stackoverflow
Solution 5 - IosNitin GohelView Answer on Stackoverflow
Solution 6 - IospreView Answer on Stackoverflow
Solution 7 - IosNick KohrnView Answer on Stackoverflow
Solution 8 - IosChetan KoliView Answer on Stackoverflow
Solution 9 - IosKy.View Answer on Stackoverflow
Solution 10 - IosDave GView Answer on Stackoverflow
Solution 11 - IosanuraagdjainView Answer on Stackoverflow
Solution 12 - Iosuser3305074View Answer on Stackoverflow