您可以使用UISwitch类来创建和管理ON/ OFF按钮,您会看到,例如在飞行模式等服务的偏好设定(设定)。这些对象被称为开关。
|
|
e.g.123456UISwitch *switch1 = [[UISwitch alloc]initWithFrame:CGRectMake(100, 100, 0, 0)];switch1.onTintColor = [UIColor redColor];switch1.thumbTintColor = [UIColor blueColor];switch1.tintColor = [UIColor yellowColor];[switch1 setOn:YES animated:YES];[self.view addSubview:switch1];