Is there a way to pass the variable for the floating point precision parameter to printf format string functions in Objective-C (or even C)? For example, in TCL and other scripting languages, I can do something like this:
set precision 2 puts [format "%${precision}f" 3.14159]
and the output will, of course, be 3.14. I would like to do something like this in Objective-C:
float precision = 2 NSString *myString = [NSString stringWithFormat:@".2f", 3.14159]
except that I would like to include precision as a variable. How can I do that?
Ampers4nd
source share