码迷,mamicode.com
首页 > 其他好文 > 详细

UISwitch

时间:2015-01-22 21:40:38      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

        UISwitch *noticeSwtich = [[UISwitch alloc] initWithFrame:CGRectMake(0, 0, 51, 31)];
//        noticeSwtich.layer.cornerRadius = noticeSwtich.height/2;
//        noticeSwtich.backgroundColor = RGB(0, 187, 39);
//        noticeSwtich.tintColor = RGB(0, 187, 39);//设置关着的时候的颜色
        noticeSwtich.onTintColor = RGB(0, 187, 39);//设置开着的时候的颜色
        [noticeSwtich addTarget:self action:@selector(noticeSwitchAction:) forControlEvents:UIControlEventValueChanged];
        cell.accessoryView = noticeSwtich;

 

UISwitch

标签:

原文地址:http://www.cnblogs.com/shidaying/p/4242520.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!