如何在IB中的UITextView中输入新行
我只是想在 UITextView 中输入一些默认文本。有几个段落,我想用新行分隔这些段落。然而,当我按下回车键时,它只是完成了数据的输入。
在 Interface Builder 中为 UITextView 创建默认文本时如何输入新行?
I'm just trying to enter some default text in a UITextView. There are a few paragraphs, and I wanted to separate the paragraphs with a new line. However, when I press enter, it just completes the entry of the data.
How can I enter a new line when creating the default text for a UITextView in the Interface Builder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这很简单,您必须编写段落,然后在需要换行时同时按 SHIFT+ALT+ENTER。
它也适用于 UILabels。
It is very easy, you have to write your paragraph and then push SHIFT+ALT+ENTER at the same time when you want a new line.
It also works with UILabels.
您可以通过先输入
^-Q
(control-Q) 来转义文本系统解释的特殊键。这适用于 OS X 上几乎所有位置的 return、tab 等。You can escape special keys being interpreted by the text system by entering
^-Q
(control-Q) first. That works for return, tab etc. in just about all places on OS X.