Disable Horizontal Scrolling to UITextView Programmatically

后端 未结 3 1125
迷失自我
迷失自我 2021-01-16 03:06

I\'m looking for a way to disable horizontal scrolling of a UITextView programmatically, it was easy via the Interface Builder, but since I\'m designing the view programmati

3条回答
  •  说谎
    说谎 (楼主)
    2021-01-16 03:50

    Just to add a bit here, that "tiny bit of scrolling left and right" even after you disable horizontal scrolling is caused by the ContentInsets. The following disables that:

    self.textView.contentInset = UIEdgeInsetsMake(5, 0, 5, 0);
    

提交回复
热议问题