2013-09-23 80 views

回答

14

使用通用字符名

// 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"; 
+1

只是一個小側面說明這裏:如果你通過本地化發送此,我僅大寫字母ü的工作,但有4位。 – margusholland

相關問題