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

UISwitch控件

时间:2014-08-06 18:23:01      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   for   ar   cti   log   ad   

用处:开关空间,用于处理两种状态

-(void)viewDidLoad

{

  [super viewDidLoad];

  CGRect frame = CGRectMake(20,20,0,0);

  self.switch = [[UISwitch alloc]initWithFrame:frame];

  //设置初始状态

 [self.switch setOn:YES];

//底色颜色

self.switch.tintColor = [UIColor redColor];

//开启底色颜色

self.switch.ontintColor = [UIColor brownColor];

//滑块颜色

self.switch.thumbtintColor = [UIColor greenColor];

//添加值改变事件方法

[self.switch addTarget:self action:@selector(change:) forControlEvents:UIControlEventValueChanged];

[self.view addSubView:self.switch];

}

-(IBAction) change:(id)sender

{

  UISwitch* switch = (UISwitch*)sender;

  if(switch.on)

      {NSLog(@"set on");}

  else

      {NSLog(@"set off");}

}

UISwitch控件,布布扣,bubuko.com

UISwitch控件

标签:style   color   io   for   ar   cti   log   ad   

原文地址:http://www.cnblogs.com/AngryCooder/p/3894774.html

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