0

我有一个简单的鞋码转换器应用程序,我希望它是这样的,如果答案不需要小数位,就没有小数位,只有整数。如果答案是 2,我不想让它说 2.000000,它应该说 2。如果它需要一位小数,它应该显示到一位小数,例如 12.8 而不是 12.80。我该怎么做?

ViewController.m 文件

- (void)viewDidLoad
        {
            [super viewDidLoad];
            _countryNames = @[@"Europe", @"United Kingdom", @"Japan"];

            _sizeRates = @[ @11.5f, @.875f, @7.0f];
        }

-(void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component

                NSString *resultString = [[NSString alloc] initWithFormat: @"%3f USS = %3f %@", size, result, _countryNames[row]];
                _resultLabel.text = resultString;
            }
4

1 回答 1

2

使用%.0f , %.1fetc 指定

前任。:

if(requires 1) 
{
// use %.1f
else
    {
    //use %.2f
    }
}

继续这样

希望我有所帮助。

于 2013-07-16T13:47:23.000 回答