UITextView - disable vertical scrolling

后端 未结 7 2214
野性不改
野性不改 2021-01-06 06:50

How can I disable vertical scrolling in my UITextView? I want it to basically just scroll horizontally.

7条回答
  •  我在风中等你
    2021-01-06 07:46

    Just set the contentSize to the height of the view.

    You'll use this:

    CGSize scrollableSize = CGSizeMake(widthOfContent, heightOfView);
    [myScrollView setContentSize:scrollableSize];
    

提交回复
热议问题