How can I have a 2 digits integer ina a string even if the integer is < 10 ? in ?
e.g. [NSString stringWithFormat:@"%d", 1] //should be @"01"
thanks
|
How can I have a 2 digits integer ina a string even if the integer is < 10 ? in ?
thanks |
|||
|
|
|
I believe that the stringWithFormat specifiers are the standard IEEE printf specifiers. Have you tried
|
|||
|
|
|
Use the format string If you are formatting numbers for presentation to the user, though, you should really be using |
|||
|
|