views:

102

answers:

2

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.

+1  A: 

% is used as an escape character, e.g. %@, %i, etc.

So to use the % sign then you use two, i.e. %%

Michael Waterfall
+8  A: 

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 %%.

Jarret Hardie