Add “padding” to a UITextView

前端 未结 8 504
渐次进展
渐次进展 2021-01-31 14:19

as the title says i am trying to add padding-like behavior to a UITextView. The textview is generated when the view is pushed inside my navigation controller and the following c

8条回答
  •  醉梦人生
    2021-01-31 14:55

    Using iOS7 I have done it just with

    [self.textView setTextContainerInset:UIEdgeInsetsMake(0, 12, 0, 12)];
    

    Hope this helps, Mário

提交回复
热议问题