IOS - remove ALL padding from UITextView

后端 未结 5 1959
醉酒成梦
醉酒成梦 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:05

    Swift 4 version for the OA

    self.tDescription.textContainerInset = UIEdgeInsets.zero
    self.tDescription.textContainer.lineFragmentPadding = 0
    

提交回复
热议问题