Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法让 UIStepper 计数 5 而不是一次增加一个增量?即,点击 + 并且标签显示 5、10、15、20 等,或者每次都减去 5?到目前为止,我已经尝试过value +5;,但这不起作用。任何帮助都将不胜感激。谢谢!
value +5;
做[<insertsteppername> setStepValue:5];
[<insertsteppername> setStepValue:5];
例如:
UIStepper *stepper = [[UIStepper alloc] initWithFrame:CGRectMake(120,20,0,0)]; [stepper setStepValue:5];
UIStepper 有一个增量设置(称为“步骤”) - 您可以在属性检查器中找到它。