I would like to use UIPageControl
to navigate between different view controllers. I have 2 view controllers and another main view controller contains the UIPageControl
. The 2 view controllers to be navigated between have been added as children to the main view controller. When I currently start the application, I see a blank screen. I used pageControl.currentPage = 0
but I am unable to understand why I am unable to see the views.
Note that I do not want to use UIScrollView
in my application.
Edit - I have followed this tutorial http://www.wannabegeek.com/?p=168
But it uses scroll view. I do not want to use scroll view since it is creating some issues with a UIWebView
and a CorePlot which I use in the different view controllers.
I seek guidance as to how to modify this tutorial without using scroll view. Thanks!
Adding the other view controllers as children just associates the view controllers - it doesn't add the views they manage as subviews. So, when you add them as children you should also add the subviews and set the initial frames. You might also want to add swipe gestures to trigger view animations to animate the frames of the views (though there are several other options, like using a scroll view).
As part of the animation to move the views you manually update the page control (that won't happen automatically).
The
loadScrollViewWithPage
method is the key. Call this with parameter0
and then1
to load both of the pages and add the views as subviews. Just changeself.scrollView
toself.view
.I would add a (two really, but get 1 working first) swipe gesture to the page control. Then when it is swiped you can move the other views.
The swipe gesture callback:
This iterations over the child view controllers and animates the frames of their views to move them to the left. The swipe left to right handler will be the same except it will
+=
the width to move the to the right.[Code Edited - syntax]
UIPageControl does not do anything much except display some dots. If you want a way of switching between view controllers it sounds like you want UIPageViewController, which is a completely different animal. A nice feature of UIPageViewController is that it can display a UIPageControl as a way of indicating / switching view controllers, which may be just the kind of thing you're after.
UIPageControl doesn't handle swiping or page switching for you. In order to use it, you NEED to have a scroll view (or some other kind of control) to handle the swipes and the actual page switching, and then implement the UIScrollViewDelegate protocol (or whatever protocol you need for the control you're using) to know when the page control should update it's current page position (the currently selected dot). UIPageControl itself doesn't really do a whole lot.