Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dynamically format a float in a NSString

Consider this:

NSString *whatever=[NSString stringWithFormat:@"My float: %.2f",aFloat];

This will round my aFloat to 2 decimal places when building the string whatever

Suppose I want the 2 in this statement to be assignable, such that, based on the value of aFloat I might have it show 2 or 4 decimal places. How can I build this into stringWithFormat?

I want to be able to do this without an if that simply repeats the entire line for different cases, but rather somehow dynamically change just the %.2f portion.

like image 756
johnbakers Avatar asked Dec 05 '22 14:12

johnbakers


1 Answers

The proper answer is to use an NSNumberFormatter.

However, the easy answer that uses format strings is to use the asterisk specifier. According to the Apple documentation the format string conforms to the IEEE printf specification. This specification states the following:

A field width, or precision, or both, may be indicated by an asterisk ( '*' ). In this case an argument of type int supplies the field width or precision.

This means that

int precision = 2;
NSString *whatever=[NSString stringWithFormat:@"My float: %.*f", precision,aFloat];
//                                   Asterisk in place of 2^^    ^^^^^^^^^ int variable

should work. I have to say, I haven't tried it though, I tend to use NSNumberFormatters.

like image 118
JeremyP Avatar answered Dec 27 '22 20:12

JeremyP