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
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() }