views:

44

answers:

1

Is it possible to do vertical scrolling without horizontal scrolling in UIScrollView? How can I do this?

A: 

The property pageEnabled should set to TRUE, for paging scroll. The contentSize's width is as the same as view's width, and the height of contentSize set the value you desired. Then, it will do vertical scrolling, but no horizontal scrolling in UIScrollView.

You can read this sample coes, ScrollViewSuite. Maybe there are something you need in the sample codes.

Toro