I've read every tutorial I've found about UIPageViewController, but they show just basics, I'd like to create something like new twitter app has:
UIPageViewController is embedded into Navigation controller, title of navigation bar is based on current page and those page dots are there as well, user can tap on item on current page(item from table view/collection view) to see detail.
I was able to come up with something similar, each page had collection view, and showing detail of some item was reflected in navigation bar, there was correct title and "<" button, but I wasn't able to change title based on currently shown page
Please, could you describe me how to do this in few steps/basic structure of controllers?
Mr. Isuru ! I got your question... Solution given by Mr. Micnguyen is the exact solution but the mentioned delegate method (didFinishAnimating()) is called when swipe action is done due to which initially title is not shown.
Hence to resolve that problem, we need to set its initial value in viewDidLoad() method of UIPageViewController class as mentioned below:
Thanks !
Don't know if you are still working on this but here goes anyway. To set up a UIPageViewController you might use the tutorial and two questions below.
http://www.appcoda.com/uipageviewcontroller-storyboard-tutorial/
How to implement UIPageViewController that utilizes multiple ViewControllers
How to add UIBarButtonItem to NavigationBar while using UIPageViewController
The last link pertains specifically to setting the contents of the navigationBar depending on what you are viewing.
The key is to create a UINavigationItem Property in the .h file of your UIPageViewController content view controllers, meaning the ones/one that are displaying whatever it is you are displaying.
From my code in
FirstViewController.h
SecondViewController.h
andThirdViewController.h
In the second and third links above you'll see a storyboard layout of a Master-Detail application (which uses a navigation controller). The
UIPageViewControllerDataSource
is theDetailViewController
. The three pages associated with thepageViewController
are my content view controllers.In DetailViewController.m you have to instantiate the contentViewControllers somewhere. At that point you pass the DetailViewControllers navigationItem id to the content view controllers. Here is how I instantiate my content view controllers using the delegate methods of the
UIPageViewController
.The delegate method calls the method below. It is almost directly from the tutorial link with just a few modifications.
Notice that properties are passed into the view controller including
self.navigationItem
. Passing it in ensures you can make changes to the navigationBar items.Then in the
viewDidAppear
method of your content view controller you can simply set the title on the navigation bar like this.It is important to use
viewDidAppear
becauseviewDidLoad
is not called every time the screen appears. I believe the UIPageViewController caches the page before and the page after whatever you are viewing which saves the system from having to load the page every time you navigate to it.If you are using a single view controller for all you pages like the tutorial does you will have to use the index property to know what to set the title to.
Hope this helps!
I had a very similar setup and solved the problem.
My setup is that I have a UIPageViewController inside a UINavigationController because I wanted the navigation bar to be persistent while I swiped between each view controller. I wanted the title of the current UIViewController inside the UIPageViewController to become the title of the UINavigationController.
The way to do this is to implement the
UIPageViewControllerDelegate
methodpageViewController didFinishAnimating
which triggers after a change to a view controller is made from the UIPageViewController. You can probably see where this going: From here, set the navigationItem.title property of the UIViewPageController, which the UINavigationController uses to set it's own title, with that of the current view controller's title.Example:
NB: This delegate method triggers only off gesture-initiated scrolls.