How to set margins (padding) in UITextView?
Starting from iOS 7 you can use textContainerInset property: Objective-C textView.textContainerInset = UIEdgeInsetsMake(0, 20, 0, 20); Swift textView.textContainerInset = UIEdgeInsets(top: 0, left: 20, bottom: 0, right: 20)