我試圖使UILabel
以小數爲單位進行計數,但它四捨五入到最接近的整數。這裏是代碼:當我嘗試+2.50時,NSString四捨五入到最接近的整數
int currentTime = [totalPrice.text intValue];
int newTime = currentTime + 2.50;
totalPrice.text = [NSString stringWithFormat:@"%d.00", newTime];
我在做什麼錯?
P.S.我無法在StackOverflow上找到任何有用的其他文章。
謝謝! – 2012-01-03 03:55:55