UILabel和UITextView未正确对齐

时间:2017-07-14 20:11:43

标签: swift3 uilabel ios-autolayout

我的UILabel和UITextView彼此相对,左对齐自动布局。但它看起来像这样:

enter image description here

正确对齐这些内容的最佳方法是什么?

1 个答案:

答案 0 :(得分:2)

最简单的方法是直接设置内容插入。

textView.contentInset = UIEdgeInsetsMake(-4,-4,0,0)

结果看起来像

enter image description here