I have a custom cell with UITextView in it. The length of text that I’m loading to this UITextView changes from very short to very long. So please, don’t say “use a label instead“. I want to keep my cells in same height but to use vertical scrolling of UITextView if the text is too long.
I have tried the method here but since I am using custom cell initializing in my cellForRowAtIndexPath event, the observer didn’t work. I tried same method in my cell class under initWithStyle function, didn’t work either.
What else do you suggest? Or should I work this function in a different way? Any help is appreciated.
Thanks in advance.
In your TableView dataSource –