IOS - remove ALL padding from UITextView

后端 未结 5 1961
醉酒成梦
醉酒成梦 2021-01-30 06:22

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

5条回答
  •  长情又很酷
    2021-01-30 07:03

    Although it is iOS 7 only, an extremely clean solution is to set the textView's textContainerInsets as such:

    [textView setTextContainerInset:UIEdgeInsetsZero];
    textView.textContainer.lineFragmentPadding = 0; // to remove left padding
    

    This will effectively remove all padding (insets) around the text inside the text view. If your deployment target is iOS 7+ then this is the best solution thus far.

提交回复
热议问题