可能重複:
Limit a double to two decimal places在Objective c中顯示兩位小數?
我想目的C.顯示特定格式的數字在這裏,我只是想用兩個精確顯示的數字。
假設我有25.5這樣的數字;
然後我想顯示數字如下。
25.5 => 25.50
可能重複:
Limit a double to two decimal places在Objective c中顯示兩位小數?
我想目的C.顯示特定格式的數字在這裏,我只是想用兩個精確顯示的數字。
假設我有25.5這樣的數字;
然後我想顯示數字如下。
25.5 => 25.50
替換爲
//待辦事宜:2位小數 NSNumber * sum = [NSNumber numberWithFloat:([refreshOrderResponse.TaxPrice doubleValue] + [refreshOrderResponse.ServiceChargePrice doubleValue])]; taxLbl.text = [NSString stringWithFormat:@「%@」,[sum stringValue]]; – 2012-03-01 05:53:56
試試這個taxLbl.text = [NSString stringWithFormat:@「%。2f」,[sum doubleValue]]; – Hector 2012-03-01 06:01:55
謝謝...它的工作原理 – 2012-03-01 06:19:51
顯示數字怎麼樣?到文本字段?到日誌? – 2012-03-01 05:41:47