I have an application that used UITextViews to display text (possibly multi-line) and worked correctly in iOS8. I disabled scrolling by declaring self.scrollEnabled = false . UITextView broke words to new lines where needed, and everything seemed to work!
However, when I ran the code on iOS9, the UITextView displayed only one line of text (no matter how many lines of text were).

I realized that when I deleted the line self.scrollEnabled = false , the UITextView displayed correctly (showing all the rows), but it became scrollable again, and that was not the intention.

What to do to allow a UITextView display multiple rows and disable scrolling? Has anyone seen this problem before or had any suggestions?
Thanks!
source share