标签: ios swift interface-builder uiedgeinsets
我有一个UITableViewCell,其中包含一个UITextView。
UITableViewCell
UITextView
我想在此文本视图上设置填充,以便将单元格内容在每一侧按10推入。
我知道我可以使用textView.textContainerInset = UIEdgeInsets(top: 10, left: 10, bottom: 10, right: 10)
textView.textContainerInset = UIEdgeInsets(top: 10, left: 10, bottom: 10, right: 10)
在处理XIB文件时可以使用IB吗?
答案 0 :(得分:1)
您可以使用Rect类型设置Key Path。
Key Path
这应该可以满足您的需求。