Rounding numbers in Objective-C - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T04:23:23Zhttp://stackoverflow.com/feeds/question/752817http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/752817/rounding-numbers-in-objective-c2Rounding numbers in Objective-CWaRrK2009-04-15T17:25:33Z2009-07-21T09:48:01Z
<p>Hi,</p>
<p>I'm trying to do some number rounding and conversion to a string to enhance the output in an Objective-C program. </p>
<p>I have a float value that I'd like to round to the nearest .5 and then use it to set the text on a label.</p>
<p>For example:</p>
<p>1.4 would be a string of: 1.5</p>
<p>1.2 would be a string of: 1</p>
<p>0.2 would be a string of: 0</p>
<p>I've spent a while looking on Google for an answer but, being a noob with Objective-C, I'm not sure what to search for! So, I'd really appreciate a pointer in the right direction!</p>
<p>Thanks,
Ash</p>
http://stackoverflow.com/questions/752817/rounding-numbers-in-objective-c/752929#7529292Answer by htw for Rounding numbers in Objective-Chtw2009-04-15T17:53:40Z2009-04-15T17:53:40Z<p>I'd recommend looking into using <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/DataFormatting/Articles/dfNumberFormatting10%5F4.html#//apple%5Fref/doc/uid/TP40002368" rel="nofollow" title="NSNumberFormatter">NSNumberFormatter</a>.</p>
http://stackoverflow.com/questions/752817/rounding-numbers-in-objective-c/753136#7531364Answer by keremk for Rounding numbers in Objective-Ckeremk2009-04-15T18:48:13Z2009-04-15T18:48:13Z<pre><code>NSString *numberString = [NSString stringWithFormat:@"%f", round(2.0f * number) / 2.0f];
</code></pre>
http://stackoverflow.com/questions/752817/rounding-numbers-in-objective-c/753928#7539283Answer by WaRrK for Rounding numbers in Objective-CWaRrK2009-04-15T22:06:46Z2009-04-15T22:06:46Z<p>Thanks for the pointers everyone, I've managed to come up with a solution:</p>
<pre><code>float roundedValue = round(2.0f * number) / 2.0f;
NSNumberFormatter *formatter = [[NSNumberFormatter alloc] init];
[formatter setMaximumFractionDigits:1];
[formatter setRoundingMode: NSNumberFormatterRoundDown];
NSString *numberString = [formatter stringFromNumber:[NSNumber numberWithFloat:roundedValue]];
[formatter release];
</code></pre>
<p>The above works for the test cases I threw at it, but if anyone knows a better way to do this I'd be interested to hear it!</p>
http://stackoverflow.com/questions/752817/rounding-numbers-in-objective-c/1158239#11582390Answer by Osos for Rounding numbers in Objective-COsos2009-07-21T09:48:01Z2009-07-21T09:48:01Z<p>Use lroundf() to round a float to integer and then convert the integer to a string.</p>