我需要在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);