7、UIStepper
//计数器控件 固定宽高
UIStepper * stepper = [[UIStepper alloc] initWithFrame:CGRectMake(100, 100, 0, 0)];
[self.view addSubview:stepper];
stepper.value = 30;
stepper.minimumValue = 10;
stepper.maximumValue = 50;
stepper.stepValue = 2;
stepper.continuous = NO;
//临界是否继续输出,min <-> max
stepper.wraps = YES;
stepper.tintColor = [UIColor redColor];
//点住按钮是否自动增加计数
stepper.autorepeat = YES;
[stepper addTarget:self action:@selector(stepAction:) forControlEvents:UIControlEventValueChanged];
}
- (void)stepAction:(UIStepper *)stepper {
NSLog(@"%lf",stepper.value);
self.stepperLabel.font = [UIFont systemFontOfSize:stepper.value];
}
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步