作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
假设我有 3 个 UIStepper
。
当我更改其中一个的值时,其他步进器的值会根据公式发生变化。
步进器一值为10。
步进二值是5.
步进器三值为3。
如果我更改步进器 10 +/- 1,它可能会更改步进器 2 +/- 1 中的值。
这可能吗?
最佳答案
这是绝对有可能的。
你可以想象这样的场景:
UIStepper *stepperOne = [[UIStepper alloc] initWithFrame:frame];
[stepperOne addTarget:self action:@selector(stepperOneChanged:) forControlEvents:UIControlEventValueChanged];
- (void)stepperOneChanged:(UIStepper*)stepperOne{
//This method would be called on the target of your first stepper on UIControlEventsValueChanged
//Decrease the value by 1
stepperTwo.value --;
//OR
//Increase the value by 1
stepperTwo.value ++;
}
关于ios - 有没有办法根据计算以编程方式更改 UIStepper 的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9627856/
我是一名优秀的程序员,十分优秀!