I understand there are some similar posts but they don't seem to work for me.
I have a uitextview that I want to behave similar to messenging apps.
I used autolayouts and [textview setScrollEnabled:NO] to allow the uitextview to expand dynamically above the keyboard. Of course, it grows till it reaches the top of the screen. When it stops growing you cant see any additional text.
I tried to find the height where it stop growing inside the textViewDidChange and called [textView setScrollEnabled:YES], but it shrinked back the initial size before it grew.
How can i enable the scrolling when it reaches a certain height or cant grow anymore?