减少Objective-C中两个Unicode字符之间的空间

时间:2012-07-20 07:11:46

标签: iphone ios unicode nsstring

我需要在字符串中显示两个Unicode字符,即上标。我是这样做的:

NSLog(@"%@",[NSString stringWithFormat:@"\u02e2\u00B9 2010"]);

我也可以表明,但我的问题是它在这两个角色之间显示了一些空间。我怎样才能减少这个空间?

提前致谢。

1 个答案:

答案 0 :(得分:0)

2个字符之间没有空格,但在“2010”之前---> “2010年"¹”

目前尚不清楚你是否想要这个空间......

如果你想要它只是使用:

NSLog(@"%@",[NSString stringWithFormat:@"\u02e2 \u00B9 2010"]);