If you only want to move the text, try
[textViewTest setContentInset: UIEdgeInsetsMake (<#CGFloat top #>, <#CGFloat left #>, <#CGFloat bottom #>, <#CGFloat right #>)];
If a positive number moves the frame toward the middle, a negative number moves it out of the middle.
For example, [textViewTest setContentInset: UIEdgeInsetsMake (-5, 0, 5.0)] will move the text 5 pixels up!
Jerry Thomsan
source share