Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在字符串末尾有一个 CCLabelTTF 打印空格,但它们不会。我可以记录字符串并通过突出显示日志清楚地看到末尾的空格被保留。
我尝试附加一个十进制 ascii 不间断空格,但它显示为不同的字符。我使用的字体是 Monaco。
我想到了。而不是附加 @" " 我像这样附加了 unicode 值 U+00A0:
labelPieceObj = [labelPieceObj stringByAppendingString:@"\u00A0"];