Question

I was trying show a bunch of images, one at once. User could swipe left or right to navigate, just like photo library.

What I did is, for example I have 6 images, create a scroll view to hold those 6 images, and using pan gesture to move it.

Am I doing right? Or is there another neat solution?

Thanks

EDIT:

I'm asking am I doing right by using gesture? More specific, should I use UIScrollView to do this or I should use something else?

Update:

I finally figure out a way to do. Use UIPanGestureRecognizer and check the speed. if the speed is fast enough, then treat like swipe gesture. Will post code later.

Was it helpful?

Solution

UIScrollView has a default gesture and does not need a new one.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top