我希望在显示的数字后设置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]]; }
答案 0 :(得分:2)
使用此:
NSString* twoDecimalPointString = [NSString stringWithFormat:@"%.02f", floatNumber];
%.02f
这很重要。