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.
我需要在一个字符串中显示两个 Unicode 字符,即上标。我这样做是这样的:
NSLog(@"%@",[NSString stringWithFormat:@"\u02e2\u00B9 2010"]);
我也可以证明这一点,但我的问题是它在这两个字符之间显示了一些空间。我怎样才能减少这个空间?
提前致谢。
2 个字符之间没有空格,但在 "2010" ---> "ˢ¹ 2010" 之前
不清楚你是否想要这个空间......
如果你想要它,只需使用:
NSLog(@"%@",[NSString stringWithFormat:@"\u02e2 \u00B9 2010"]);