我有一个连接到标签的uislider,当滑块移动时,标签会调整其值。我能够设置增量和最大值和最小值,但我无法弄清楚如何从值中删除小数位...我只想要整个步骤。建议请
- (IBAction)sliderValueChanged:(id)sender {
self.myLabel.text = [NSString stringWithFormat:@"%f", (roundf(self.mySlider.value)];
}
答案 0 :(得分:1)
以int
而不是float
显示结果。
self.myLabel.text = [NSString stringWithFormat:@"%d", (int)roundf(self.mySlider.value)];