您好, 我想知道如何在UILabel中显示特殊字符?我想在UILabel中显示“%”符号。
calcLabel.text = [NSString stringWithFormat:@"%d Goal Complete", progressView.progress];
我试过
calcLabel.text = [NSString stringWithFormat:@"%d % Goal Complete", progressView.progress];
然后它显示一些具有实际值的其他值。
...谢谢
答案 0 :(得分:4)
calcLabel.text = [NSString stringWithFormat:@"%d %% Goal Complete",
// ^^
progressView.progress];
%
本身是格式字符串中的特殊字符,因此您需要使用另一个%
转义它。