To enter / start text at the top UITextViewyou need to set contentInset, for example,
self.yourTextViewName.contentInset = UIEdgeInsetsMake(2.0,1.0,0,0.0);
Commonly contentInsetused to set the distance between the insertion between the content view and the conclusion UITextView.
source
share