如何在TextView中快速设置垂直和水平对齐

时间:2019-07-02 13:55:49

标签: swift uitextview

我需要在Swift中使用UITextView扩展名在文本视图上设置 top 底部 medium 文本对齐方式。

对于页首: txtView.contentInset = UIEdgeInsets(top: -(view.frame.height/2.60),left: 0.0, bottom: 0, right: 0.0);

对于Botom: txtView.contentInset = UIEdgeInsets(top: (view.frame.height/2.60),left: 0.0, bottom: 0, right: 0.0);

对于中级: txtView.contentInset = UIEdgeInsets(top: 0, left: 0.0, bottom: 0, right: 0.0);

0 个答案:

没有答案