Recherche…


Syntaxe

  • (instancetype) initWithFrame: (CGRect) frame;
  • (void) setOn: (BOOL) sur animé: (BOOL) animé;
  • (instancetype nullable) initWithCoder: (NSCoder *) aDecoder;

Remarques

1. Référence UISwitch: Documentation Apple

entrer la description de l'image ici

2. Une autre référence donnée par: Enoch Huang

entrer la description de l'image ici

Mettre en / hors service

Objectif c

[mySwitch setOn:YES];
//or
[mySwitch setOn:YES animated:YES];

Rapide

mySwitch.setOn(false)
//or
mySwitch.setOn(false, animated: false)

Définir la couleur de fond

Objectif c

mySwitch.backgroundColor = [UIColor yellowColor];
[mySwitch setBackgroundColor: [UIColor yellowColor]];
mySwitch.backgroundColor =[UIColor colorWithRed:255/255.0 green:0/255.0 blue:0/255.0 alpha:1.0];
mySwitch.backgroundColor= [UIColor colorWithWhite: 0.5 alpha: 1.0];
mySwitch.backgroundColor=[UIColor colorWithHue: 0.4 saturation: 0.3 brightness:0.7 alpha: 1.0];

Rapide

mySwitch.backgroundColor = UIColor.yellow
mySwitch.backgroundColor = UIColor(red: 255.0/255, green: 0.0/255, blue: 0.0/255, alpha: 1.0)
mySwitch.backgroundColor = UIColor(white: 0.5, alpha: 1.0)
mySwitch.backgroundColor = UIColor(hue: 0.4,saturation: 0.3,brightness: 0.7,alpha: 1.0)

Définir la couleur de la teinte

Objectif c

//for off-state
mySwitch.tintColor = [UIColor blueColor];
[mySwitch setTintColor: [UIColor blueColor]];

//for on-state
mySwitch.onTintColor = [UIColor cyanColor];
[mySwitch setOnTintColor: [UIColor cyanColor]];

Rapide

//for off-state
mySwitch.tintColor = UIColor.blueColor()

//for on-state
mySwitch.onTintColor = UIColor.cyanColor()

Définir l'image pour l'état On / Off

Objectif c

//set off-image
mySwitch.offImage = [UIImage imageNamed:@"off_image"];
[mySwitch setOffImage:[UIImage imageNamed:@"off_image"]];

//set on-image
mySwitch.onImage = [UIImage imageNamed:@"on_image"];
[mySwitch setOnImage:[UIImage imageNamed:@"on_image"]];

Rapide

//set off-image
mySwitch.offImage = UIImage(named: "off_image")

//set on-image
mySwitch.onImage = UIImage(named: "on_image")


Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow