-4

我想在显示的数字后设置 2 位小数。

。H

- (IBAction)CalculateSpeed:(id)sender; {
int iSliderValue = [_sliKilometre value];
[_lblCelsiusValue setText: [NSString stringWithFormat:@"%d", iSliderValue]];
int iFahrenheit = iSliderValue * 1*0.621371192;
[_lblFahrenheitValue setText: [NSString stringWithFormat:@"%d.2f", iFahrenheit]]; }    
4

1 回答 1

2

用这个:

NSString* twoDecimalPointString = [NSString stringWithFormat:@"%.02f", floatNumber];

%.02f很重要。

于 2013-08-17T10:12:00.560 回答