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

UISlider控件

时间:2014-08-06 18:31:51      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   for   ar   cti   log   ad   

用处:在一个连续的区间中选择一个值

-(void)viewDidLoad

{

  [super viewDidLoad];

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

      self.slider = [[UISlider alloc]initWithFrame:frame];

      //设置最小值

      self.slider.minimumValue = 0;

      //设置最大值

  self.slider.maximumValue = 100;

  //设置当前值

  self.slider.value = 50;

  //是否连续触发事件处理

  self.slider.continuous = YES;

  //最小端颜色

  self.slider.minimumTrackTintColor = [UIColor redColor];

  //最大段颜色

   self.slider.maximumTrackTintColor = [UIColor greenColor];

      //滑块颜色

      self.slider.thumbTintColor = [UIColor blackColor];

      //添加值改变事件方法

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

      [self.view addSubView:self.slider];

}

-(IBAction) change:(id)sender

{

   UISlider * slider  = (UISlider*)sender;

  float value = slider.value;

  NSLog(@"%f",value);

}

UISlider控件,布布扣,bubuko.com

UISlider控件

标签:style   color   io   for   ar   cti   log   ad   

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

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