how can I use % as a character in my NSString?
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
How to add percent sign to NSString
尝试使用不带运气的%符号创建一些字符串输出:
1 | [NSString stringWithFormat:@"%@% off entire order.",self.discountPercentage.text] |
示例输出希望是这样的:整个订单的25%。
相反,我得到了一些疯狂的输出:2537777777776FF整个订单。
在%之前是否需要使用转义符?
使用
以nsstring格式登录的百分比代码是%%。对于nslog()和printf()格式也是如此。