8

我想定义一个NSString长度为 1 的 ,其唯一字符是不间断空格。我应该怎么做 ?

4

1 回答 1

15

使用通用字符名称

// http://en.wikipedia.org/wiki/Non-breaking_space
NSString* const nonBreakingSpace = @"\u00A0";

// small-u takes four digits, big-u takes eight
// NSString* const nonBreakingSpace = @"\U000000A0";
于 2013-09-23T12:52:54.390 回答