使用XIB在UITextView上设置内容插图

时间:2019-01-08 08:24:46

标签: ios swift interface-builder uiedgeinsets

我有一个UITableViewCell,其中包含一个UITextView

我想在此文本视图上设置填充,以便将单元格内容在每一侧按10推入。

我知道我可以使用textView.textContainerInset = UIEdgeInsets(top: 10, left: 10, bottom: 10, right: 10)

在处理XIB文件时可以使用IB吗?

1 个答案:

答案 0 :(得分:1)

您可以使用Rect类型设置Key Path

这应该可以满足您的需求。

enter image description here