16.UISwitch(开/关视图)

UISwitch继承于UIControl
UIControl 继承于UIView

1.初始化
UISwitch *mySwitch = [[UISwitch alloc] initWithFrame:CGRectMake(100, 100, 0, 0)];

2 .设置属性

设置边框的颜色
mySwitch.tintColor = [UIColor redColor];

设置开启的颜色
mySwitch.onTintColor = [UIColor blueColor];

设置圆点的颜色
mySwitch.thumbTintColor = [UIColor greenColor];

设置开启状态 默认是NO
mySwitch.on = YES;

animated开启时候有动画效果
[mySwitch setOn:YES animated:YES];

UISwitch和UIButton一样继承UIControl 都可以触发点击方法

添加开关事件
[mySwitch addTarget:self action:@selector(mySwithOn:) forControlEvents:(UIControlEventTouchUpInside)];

3 .添加到窗口
[self.window addSubview:mySwitch];

4.释放
[mySwitch release];

实现开关事件
- (void)mySwithOn:(UISwitch *)mySwitch
{
判断是否开启
if (mySwitch.on) {
设置开启后效果
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@”提示” message:@”确定开启” delegate:self cancelButtonTitle:@”确认” otherButtonTitles:@”取消”, nil];
[alertView show];
[alertView release];
NSLog(@”开启状态”);

}else{
设置关闭效果
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@”提示” message:@”确认取消” delegate:self cancelButtonTitle:@”确认” otherButtonTitles:@”取消”, nil];
[alertView show];
[alertView release];
NSLog(@”关闭状态”);
}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值