Disabling vertical scrolling in UIScrollView

system picture system · Feb 23, 2011 · Viewed 104.9k times · Source

There is an option in IB to uncheck vertical scrolling on a scrollview, but it doesnt seem to work.

How can the scrollview be set to only scroll horizontally, and not vertically in the code rather than IB?

Answer

Mirko Brunner picture Mirko Brunner · Jan 22, 2014

since iOS7:

first: the content size width must be equal to the width of your scrollview

second: in your initWithNibName:

self.automaticallyAdjustsScrollViewInsets = NO;

That´s it.