views:

78

answers:

0

I'm trying to make a paging UIScrollView display multiple pages at the same time, in effect, making the page size smaller than the scrollview's bounds. I've been googling for hours, but nobody seems to have a good solution.

I'm able to get the right effect visually by sizing the scrollview to the size I want one page to be, turning off subview clipping, and placing it inside a container that passes all of its taps to the scrollview. The problem with this is that with Y pages visible, it lets you scroll the last page all the way to the left, leaving Y-1 empty pages after the last page. Anyone know a way around this, or another approach to the problem?