Reputation: 23
The app that i am working on uses UIWebViews to display vimeo videos. Instead of displaying them all at once, i would like to be able to switch between them. What i would like to find out is whether i can use a UIPageControl to switch between them and how that can be achieved?
Is this possible?
Upvotes: 0
Views: 1592
Reputation:
You need to use a UIScrollView
together with a UIPageControl
. This can be tricky, but there are lots of tutorials out there, such as this one: link.
Upvotes: 0