如何将百分号添加到NSString

我想在一个数字之后在我的字符串中使用百分比符号。 像这样:75%。

我怎么能做到这一点? 我试过了:

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

但它不适合我。


NSString格式的百分号代码是%%NSLog()printf()格式也是如此。


百分号的转义码是“%%”,所以你的代码看起来像这样

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

另外,所有其他格式说明符都可以在概念字符串文章中找到


如果在某些情况下有帮助,可以使用unicode字符:

NSLog(@"Test percentage uFF05");
链接地址: http://www.djcxy.com/p/35127.html

上一篇: How to add percent sign to NSString

下一篇: How to determine the current iPhone/device model?