码迷,mamicode.com
首页 > 移动开发 > 详细

IOS用标签显示滑块的值

时间:2014-11-15 15:26:00      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   os   sp   for   div   

//用标签显示滑块的值

action动作的代码如下

1 - (IBAction)sliderValueChange:(id)sender {
2     UISlider *slider = (UISlider *)sender;
3     int progressAsInt = (int)(slider.value + 0.5f);
4     NSString *newText = [[NSString alloc]initWithFormat:@"%d",progressAsInt];
5     
6     self.sliderValueChange.text = newText;
7 }

 

将 最大值 最小值分别设置为 0 和  100

为右边的label设置输出口

为滑块控件设置动作 

 

bubuko.com,布布扣

IOS用标签显示滑块的值

标签:style   blog   http   io   color   os   sp   for   div   

原文地址:http://www.cnblogs.com/penger/p/4099283.html

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