How do we display percentage character in objective-c?
I am using this:
[NSString localizedStringWithFormat:@"%.2f %", percentageQs]
But for some reason, it doesn't recognize the %. thought i could escape it using this \ but i was so wrong.
How do we display percentage character in objective-c?
I am using this:
[NSString localizedStringWithFormat:@"%.2f %", percentageQs]
But for some reason, it doesn't recognize the %. thought i could escape it using this \ but i was so wrong.
% is used as an escape character, e.g. %@, %i, etc.
So to use the % sign then you use two, i.e. %%
There was a similar question tagged C
asked earlier today: How to escape the sign in C . Answer here is the same... use a double %%.