首页 > 其他 > 详细

UISwitch控件

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

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

-(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控件

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!