0

When I zoom a photo in UIScrollView and push it down or up, the scrollViewDidEndDecelerating method gets called. However, I don't want it until I scroll to the next image.

How to stop it?

For more info: I have one UIScrollView which includes 3 image view middle image view in another inner UIScrollView.

The iOSDev
  • 5,237
  • 7
  • 41
  • 78

1 Answers1

0

It seems that you need to switch your UIScrollView to paging mode. See here and here for info. See this answer too.

Community
  • 1
  • 1
Max Huk
  • 498
  • 3
  • 11
  • This is good resource links but next time please put some code snippets so user can get good understanding :) – The iOSDev Aug 07 '12 at 12:39