As you can see in this image
the UITextView changes it\'s height according to the text length, I want to make it adjust it\'s height according to the te
UITextView
I added these two lines of code and work fine for me.
func adjustUITextViewHeight(textView : UITextView) { textView.translatesAutoresizingMaskIntoConstraints = true textView.scrollEnabled = false textView.sizeToFit() }