需要在浮点值上移动小数点

时间:2011-11-28 17:50:13

标签: ios xcode

我需要配置一个十进制值,以便显示1到100的浮点数,如12.34。现在,它只显示0到1之间的浮点数,所以我得到0.12。

如何进行更改以使小数向右移动两个位置?

以下是Xcode 4.2中iOS方法的代码:

- (IBAction)sliderMoved:(UISlider *)slider
{
    NSLog(@"The value of the slider is now: %.2f", slider.value);
}

3 个答案:

答案 0 :(得分:3)

简单地将其乘以100

NSLog(@"The value of the slider is now: %.2f", slider.value*100);

答案 1 :(得分:2)

你不能把这个值乘以100吗?

答案 2 :(得分:1)

从界面设计器中,选择您的UISlider并更改值范围(最小值和最大值):

enter image description here