IOS - remove ALL padding from UITextView

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

    Please try sub-classing the UITextView and overriding the following method:

        - (id)styleString
    {
        return [[super styleString] stringByAppendingString:@"; line-height: 1.6em;margin-right: 30px; margin-left: 0px; margin-top: 0px;"];
    }
    

    Apparently; you can tweak the margin-left, margin-top & whatever you want ;)

提交回复
热议问题