iOS: conmutadores

Uso de interruptores

Los interruptores se utilizan para alternar entre los estados de encendido y apagado.

Propiedades Importantes

  • onImage
  • offImage
  • on

Método importante

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

Agregar métodos personalizados addSwitch y conmutado

-(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];
}

Actualice viewDidLoad en ViewController.m de la siguiente manera:

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

Salida

Cuando ejecutamos la aplicación, obtendremos el siguiente resultado:

Al deslizar el interruptor hacia la derecha, la salida es la siguiente: