UISwitch/开关
1、开关按钮
UISwitch *sw=[[UISwitch alloc] initWithFrame:CGRectMake(100, 200, 50, 40)];
2、控制开关,YES是开,NO是关
sw.on=YES;
3、关闭状态下的颜色
sw.tintColor=[UIColor redColor];
4、开关按钮打开状态下的颜色
sw.onTintColor=[UIColor blackColor];
5、添加开关事件
sw addTarget:self action:@selector(valueChanged:) forControlEvents:UIControlEventValueChanged];
[self.view addSubview:sw];
[sw release];