I am building a chat. Everything seem to be quite ok but I bumped into sort of \'buggy\' problem.
i got UIViewController with UITextView bar for entering message and
I ran into this today and while the fix suggested by @anorskdev works nicely, it seems that the root cause of the issue is the automaticallyAdjustsScrollViewInsets
property of UIViewController, which is true
by default. I turned it off in my storyboard and the problem went away. Look for the "Adjust Scroll View Insets" checkbox in the View Controller inspector and make sure it's unchecked.