NSLineSeparatorCharacter

NSLineSeparatorCharacter

String Programming Guide in the iOS Developer Library提到“行和段落分隔符”:NSParagraphSeparatorCharacterNSLineSeparatorCharacter。但是Xcode不接受它们(iOS7是目标):

NSLog(@"This is%Con two lines…", (unichar)NSLineSeparatorCharacter);

Code is from this SE post

这是文档错误,仅在OSX上可用吗?如果是这样,是否有任何方法可以在iOS7上使用TextKit实现相同的功能(在中为段落内的换行符)?

最佳答案

自己定义

#define NSLineSeparatorCharacter 0x2028
unichar newLine = NSLineSeparatorCharacter;
[descriptionText appendString:[NSString stringWithCharacters:&newLine length:1]];

10-08 05:22