UITextView文本对齐方式

时间:2015-01-30 16:48:46

标签: ios uitableview swift uitextview text-alignment

从UITableView到UITextView的show segue之后

show segue from UITableView

我有以下问题: 如果我清除UITextView的约束,结果当然不满意:

UITextView without constraints

但这很好的部分 - 从顶部的第一行开始。

如果我尝试向UITextView添加建议的约束,我得到了这个:

UITextView with suggested constraints

问题是文本不是从一开始就开始的。

我需要在segue页面之后得到什么,文本对齐到顶部,如下所示:

enter image description here

2 个答案:

答案 0 :(得分:1)

您可以将自己的约束添加到底栏。 首先,您需要将文本视图放在底部栏中 enter image description here

然后将自己的约束添加到bar(使用tabor上textview右键的药物)。

enter image description here

添加垂直间距

enter image description here

然后添加其他缺少的约束

enter image description here

结果:

enter image description here

答案 1 :(得分:0)

我相信在scrollView中嵌入textView可以解决问题并允许查看所有文本。