好吧,我試圖讓我的值用IBAction四捨五入到最接近的整數。如何用按鈕將一個浮點值四捨五入
So 1.88 -> 2.00 ,
11.40 -> 12.00 ,
111.01 -> 112.00, etc.
-
-(IBAction)roundUp:(id)sender
{
float floatRoundValue=lblTotalRound.text floatValue];
ceilf(floatRoundValue);
NSString *stringRoundValue = [NSString stringWithFormat:@"%1.0f", floatRoundValue];
lblTotalRound.text=stringRoundValue;
}
這是我得到的。但它仍然下降到0.5以下並且到最接近的整數
(Ex. 1.19 -> 1 , i need 1.19 -> 2.00).
我試過%1.2f,但是值並沒有改變。
我在做什麼錯?
是的工作!謝謝。但還有一個問題,我如何在不考慮整個NumberFormatter路由的情況下將$符號放在我的值前面? (例如1.88 - > $ 1.88) – iamruskie
正如Kurt Revis上面所建議的那樣,使用stringWithFormat這是一個非常強大的工具。只需將您的美元符號插入字符串中,如「$%1.0f」。 –