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

UIStepper

时间:2015-09-15 12:47:41      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:

//初始化stpper,大小是固定的
    UIStepper *step=[[UIStepper alloc]initWithFrame:CGRectMake(100, 100, 0, 0)];
    //设置最小值最大值
    step.minimumValue=1;
    step.maximumValue=30;
    //设置每次增加的值
    step.stepValue=1;
    //设置允许循环
    [step setWraps:YES];
    //设置初始值
    step.value=2;
    //添加点击事件,让数值显示在界面label中
    [step addTarget:self action:@selector(putValueOut:) forControlEvents:UIControlEventValueChanged];
    [self.view addSubview:step];

 

 

//点击事件
-(void)putValueOut:(UIStepper *)stepper
{
    int a=stepper.value;
    _label.text=[NSString stringWithFormat:@"%d",a];
}

 

UIStepper

标签:

原文地址:http://www.cnblogs.com/kyuubee/p/4809590.html

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