gpt4 book ai didi

ios - iOS 中的 NSLineSeparatorCharacter?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:02:04 28 4
gpt4 key购买 nike

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]];

关于ios - iOS 中的 NSLineSeparatorCharacter?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21208686/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com