0

For some reason, the pagingEnabled of UIScrollView does not fit my demand, I need to set the contentOffset manually. So first I need to reimplement paging, and then try to find out how to customize it.

Is it possible to reimplement UIScrollview paging only use UIScrollViewDelegate methods? And are there any examples?

ultragtx
  • 957
  • 8
  • 24
  • I believe so, please provide more detail of what you are trying to accomplish and why it currently doesn't work for you and we can provide more specific information – Mitchell Currie Aug 01 '13 at 02:49
  • Have you considered trying a different approach, like using `UIPageViewController` instead? See Apple's PhotoScroller sample code [here](http://developer.apple.com/library/ios/#samplecode/PhotoScroller/Introduction/Intro.html). – Steph Sharp Aug 01 '13 at 02:53

1 Answers1

0

I've found DMPagingScrollView that actually completely implement paging just using UIScrollView's delegate methods. It works just like a UIScrollView with paging enabled, and much more flexible.

ultragtx
  • 957
  • 8
  • 24