标签:
//初始化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];
}
标签:
原文地址:http://www.cnblogs.com/kyuubee/p/4809590.html