我有两个UILabels
显示数字的。它们通过 更新UISteppers
。我想包括第三个,UILabel
它计算用户按下任一. (因此这两个是.text)UILabel1
UILabel2
UISteppers
UILabels
我知道如果两者都应该使用该方法IBAction
,UISteppers
但我无法考虑如何编写该方法。
有人知道如何编写该方法吗?
谢谢。
更新 UILabel1
- (IBAction)smashChanged:(id)sender {
self.smashLabel.text = [NSString stringWithFormat:@"%d",
[[NSNumber numberWithDouble:[(UIStepper *)sender value]] intValue]];
}