1

我的应用程序中有简单的计算

-(IBAction)calculate {
    NSNumberFormatter *nf = [[NSNumberFormatter alloc] init];
    [nf setRoundingMode: NSNumberFormatterRoundHalfUp];
    [nf setMaximumFractionDigits: 2];

    float value1 = [[nf numberFromString: textField1.text] floatValue];
    float value2 = [[nf numberFromString: textField2.text] floatValue];

    float x = value1 * value2 / 100;
    label2.text = [nf stringFromNumber: [NSNumber numberWithFloat: x]];

    [nf release];
}

现在,当我计算结果看起来像这样:,7564,5

我需要我的结果如下所示:0,7564,50

我的问题是小数点前或小数点后没有零

4

1 回答 1

4

在 UILabel 中设置文本的地方,使用

label2.text = [NSString stringWithFormat:@"%.2f",x];

这将确保您获得 2 个小数位。您甚至不需要数字格式化程序。

于 2012-07-02T19:15:15.927 回答