How to align text inside textView vertically?

后端 未结 6 1270
天命终不由人
天命终不由人 2020-12-15 04:35

I want to align vertically the text inside my UITextView (so it will be in the middle of it). How can i achieve that? I looked up and could not find any answer that could h

6条回答
  •  孤街浪徒
    2020-12-15 05:25

    The above answer is correct, just want to add solution for those updating the textView on real time/onEditing.

    Use the above extension and add the delegate method as well.

    func textViewDidChange(_ textView: UITextView) { textView.centerVertically() }

提交回复
热议问题