There are many great examples on SO to remove the left padding of a UITextView.
How to lose margin/padding in UITextView?
However, I need to remove the right pad
My problem is solved this way
if([Utils isiOS7orHigher]){ commentView.textContainerInset = UIEdgeInsetsZero; }else { commentView.contentInset = UIEdgeInsetsMake(-11,-8,0,0); }
for more see http://foobarpig.com/iphone/get-rid-of-uitextview-padding.html