特殊字符iphone

时间:2011-04-06 07:41:33

标签: iphone objective-c uilabel

您好, 我想知道如何在UILabel中显示特殊字符?我想在UILabel中显示“%”符号。

calcLabel.text = [NSString stringWithFormat:@"%d Goal Complete", progressView.progress];

我试过

calcLabel.text = [NSString stringWithFormat:@"%d % Goal Complete", progressView.progress];

然后它显示一些具有实际值的其他值。

...谢谢

1 个答案:

答案 0 :(得分:4)

calcLabel.text = [NSString stringWithFormat:@"%d %% Goal Complete",
//                                               ^^
                                            progressView.progress];

%本身是格式字符串中的特殊字符,因此您需要使用另一个%转义它。