I'm trying to do some number rounding and conversion to a string to enhance the output in an Objective-C program.

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.

For example:

1.4 would be a string of: 1.5

1.2 would be a string of: 1

0.2 would be a string of: 0

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!

Thanks, Ash

link|improve this question

2  
If you are talking about Mac OS X, you should use the term Cocoa instead of Objective-C. Objective-C is the language that you program in, and Cocoa is the framework you use. There are other uses for Objective-C besides Cocoa so using the term Objective-C by itself may be slightly ambiguous. :) – dreamlax Apr 15 '09 at 22:13
17  
Except for adding the value to a label (which he's declaring as his intent and not actually asking about) his question has nothing to do with Cocoa and everything to do with Obj-C – Jason Coco Apr 15 '09 at 23:19
feedback

5 Answers

up vote 40 down vote accepted

Thanks for the pointers everyone, I've managed to come up with a solution:

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];

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!

link|improve this answer
7  
If this is being output to a text field, you can just attach the formatter to the field. – Chuck Apr 15 '09 at 22:17
feedback
NSString *numberString = [NSString stringWithFormat:@"%f", round(2.0f * number) / 2.0f];
link|improve this answer
feedback

Use lroundf() to round a float to integer and then convert the integer to a string.

link|improve this answer
feedback

I'd recommend looking into using NSNumberFormatter.

link|improve this answer
feedback
NSString *numberString = [NSString stringWithFormat:@"%d",lroundf(number)];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.