Blank space at top of UITextView in iOS 10
cocoa-touch, ios, iphone, uitextfield, xcode
Solution
A text view is a scroll view. View controllers will add a content offset automatically to scroll views, as it is assumed they will want to scroll up behind the nav bar and status bar.
To prevent this, set the following property on the view controller containing the text view:
self.automaticallyAdjustsScrollViewInsets = NO
Problem
I have UITextView with some text in it. Everything was fine with iOS 6 but now with iOS 7 it leaves the blank space on top and then place the text below the middle of the textview. I didn't set any contentOffSet. Please Help!