Search code examples
objective-cnsstringstring-literals

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.


Solution

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