IOS - remove ALL padding from UITextView

后端 未结 5 1940
醉酒成梦
醉酒成梦 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 06:53

    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

提交回复
热议问题