How to add percent sign to NSString

I want to have a percentage sign in my string after a digit. Something like this: 75%.

How can I have this done? I tried:

[NSString stringWithFormat:@"%d\%", someDigit];

But it didn’t work for me.

7 Answers
7

The code for percent sign in NSString format is %%. This is also true for NSLog() and printf() formats.

Leave a Comment