我有一个简单的鞋码转换器应用程序,我希望它是这样的,如果答案不需要小数位,就没有小数位,只有整数。如果答案是 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;
}