NSTextView 插入换行符

发布于 2024-09-08 06:50:59 字数 273 浏览 6 评论 0原文

我有一个 NSTextView,我需要在其中插入换行符。代码如下所示:

NSString *myString = @"test"
[myTextView insertText:myString];

/**** INSERT LINE BREAK HERE ****/

[[myTextView textStorage] insertAttributedString:MY_ATTRIBUTED_STRING atIndex:myString.length];

有人知道如何做到这一点吗?

I have an NSTextView that I need to insert a line break in. The code looks like this:

NSString *myString = @"test"
[myTextView insertText:myString];

/**** INSERT LINE BREAK HERE ****/

[[myTextView textStorage] insertAttributedString:MY_ATTRIBUTED_STRING atIndex:myString.length];

Anybody have any idea how to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

失眠症患者 2024-09-15 06:50:59

我相信你可以使用文字 \n 作为换行符

NSString *myString = @"test\n"
[myTextView insertText:myString];

I believe you can use the literal \n for a newline

NSString *myString = @"test\n"
[myTextView insertText:myString];
天邊彩虹 2024-09-15 06:50:59

我来得太晚了,但有件事需要提及:

NSTextView 是 NSResponder 的子类。 NSResponder 声明但不实现方法

-insertNewline:

NSTextView 确实实现该方法。这就是执行此操作的方法,而不是使用 '\n' 手动构建字符串。

I'm way late to the game here, but there's something that needs mentioning:

NSTextView is a subclass of NSResponder. NSResponder declares but does not implement a method

-insertNewline:

NSTextView does implement that method. That's the way to do it, not manually building a string with '\n'.

待"谢繁草 2024-09-15 06:50:59

我同意杰森的观点。使用\n。我知道它适用于 iPhone,所以它肯定也适用于 Mac。

另外,您忘记了第一行末尾的分号;)

I agree with Jason. Use \n. I KNOW it works for iPhone, so it should definitely work for Mac.

Also, you forgot a semicolon on the end of the first line ;)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文