Rounding numbers in Objective-C - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T04:23:23Z http://stackoverflow.com/feeds/question/752817 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/752817/rounding-numbers-in-objective-c 2 Rounding numbers in Objective-C WaRrK 2009-04-15T17:25:33Z 2009-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#752929 2 Answer by htw for Rounding numbers in Objective-C htw 2009-04-15T17:53:40Z 2009-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#753136 4 Answer by keremk for Rounding numbers in Objective-C keremk 2009-04-15T18:48:13Z 2009-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#753928 3 Answer by WaRrK for Rounding numbers in Objective-C WaRrK 2009-04-15T22:06:46Z 2009-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#1158239 0 Answer by Osos for Rounding numbers in Objective-C Osos 2009-07-21T09:48:01Z 2009-07-21T09:48:01Z <p>Use lroundf() to round a float to integer and then convert the integer to a string.</p>