Easy Tutorial
❮ Att Ios Ui Text Field Att Ios Ui Navigation Bar ❯

Usage of IOS Switch

A switch is used to toggle between on and off states.

Important Properties

Important Methods

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

Adding Custom Methods addSwitch and Switch

-(IBAction)switched:(id)sender{
    NSLog(@"Switch current state %@", mySwitch.on ? @"On" : @"Off");
}
-(void)addSwitch{
    mySwitch = [[UISwitch alloc] init];
    [self.view addSubview:mySwitch];
    mySwitch.center = CGPointMake(150, 200);
    [mySwitch addTarget:self action:@selector(switched:)
    forControlEvents:UIControlEventValueChanged];    
}

Modify viewDidLoad in ViewController.m as follows

(void)viewDidLoad
{
   [super viewDidLoad];
   [self addSwitch];
}

Output

Now when we run the application, we will see the following output:

Sliding the switch to the right will output as follows:

❮ Att Ios Ui Text Field Att Ios Ui Navigation Bar ❯