Skip to content

Navigation controllers

In this tutorial we cover the following topics

  • General information
  • Step 1: create a new project
  • Step 2: replace UIViewController with UINavigationController
  • Step 3: replace UITableViewController with UIViewControlers
  • Step 4: add first nonroot view controller
  • Step 5: run the application
  • Step 6: passing data from root view to first view
  • Step 7: run the applicationd
  • Step 8: add programmatically a second view controller
  • Step 9: run the application
  • Step 10: add programmatically an infinite numer of view controllers
  • Step 11: run the application


General information

The main tool we use to build hierarchical applications for iPhone is UINavigationController. UINavigationController is similar to UITabBarController in that it manages, and swaps in and out, multiple content views. The main difference between the two is that UINavigationController is implemented as a stack, which makes it well suited to working exactly with hierarchies.

A navigation controller maintains a stack of view controllers. When we design our navigation controller, we need to specify the very first view the user sees. That view’s controller is called the root view controller, or simply root controller, and is the base of the navigation controller’s stack of view controllers. As the user selects the next view to display, a new view controller is pushed onto the stack, and the view it controls appears. We refer to these new view controllers as subcontrollers.

While the navigation controller is really the heart and soul of many iPhone apps, when it comes to iPad apps, the navigation controller plays a more marginal role. A typical example of this is the Mail app, which features a hierarchical navigation controller to let users navigate among all their mail servers, folders, and messages. In the iPad version of Mail, the navigation controller never fills the screen, but appears either as a sidebar or a temporary view covering part of the main view.

Xcode offers a perfectly good template for creating navigation-based applications, and in practise we will use it whenever we need to create hierarchical applications. However, in this tutorial we are not going to use that template. Instead, we will construct our navigation-based application from the ground up, so we get a feel for how everything fits together.

  1. Step 1: create a new project
    Create a new project

    • Select File | New | Project...
    • Select Single View Application on the template selection sheet.
    • As the product name enter iOS Navigation Controller
    • Set the Language to Objective-C, devices pop-up button to Universal and make sure the check box labeled Use Core Data is unchecked.
  2. Step 2: replace UIViewController with UINavigationController
    We now need to create the basic navigation structure for our application. At the core of this will be a UINavigationController, which manages the stack of view controllers that a user can navigate between.

    • Select Main.storyboard.
    • Select the view controller in either the editor area or the Document Outline and delete it to leave the storyboard empty.
    • Find Navigation Controller in the Object Library and drag an instance into the editing area. Notice that we get two scenes instead of one - similarly to tab view controller in previous part. On the left is the UINavigationController itself. The UINavigationController has a connection wired to the second scene, which contains a UITableViewController/code. As you can see the table has the title Root View Controller. Table view controller seems to be resonable starting point when disply hierarchical data.
    • Select UINavigationController, open the Attributes Inspector, and check Is Initial View Controller in the View Controller section to make this the controller that appears when the application is launched.
  3. Step 3: replace UITableViewController with UIViewControlers
    • Delete UITableViewController.
    • Add new ViewController.
    • Control-click Navigation Controller and drag to the view controller we have just added and select root view controller from popup menu.

      Notice that view controller which has been added is also equipped with Navigation item to perform correct navigation to/from other views.

    • Select ViewController.h in the Project Navigator.
    • In the editor area double-click the class name after @interface and then right-click it.
    • In the menu that appears, select Refactor | Rename....
    • The dialog should appear - make sure that option Rename related files is checked and change the view controller name to RootController.
    • Press Preview button and next Save.
    • Single-click the yellow View Controller icon in the row of icons at the top of the View Controller Scene. Next press Alt+Command+3 to bring up the Identity Inspector. In the Custom Class section as Class select RootController.
    • Open RootController.m file and add/modify

    • When executed, Root View title should be visible on a screen
  4. Step 4: add first nonroot view controller
    • In the Project Navigator, right-click the iOS Navigation Controller group and select New File....
    • Choose Cocoa Touch Class from the iOS Source section in the template dialog and then press Next.
    • Name the new class FirstViewController, make it a subclass of UIViewController. Because we are going to add this controller to the storyboard later manually, so make sure that the Also create XIB file check box is not checked.
    • Press Next and then press Create to save the files for the new view controller.
    • Find View Controller in the Object Library and drag an instance into the editing area.
    • Single-click the yellow View Controller icon in the row of icons at the top of the View Controller Scene. Next press Alt+Command+3 to bring up the Identity Inspector. In the Custom Class section as Class select FirstViewController.
    • Now we have two options:

      1. First: Single-click the yellow View Controller icon in the row of icons at the top of the Root Controller Scene and drag to the view controller we have just added and select Manual Segue | Show from popup menu.
      2. Second: Single-click the yellow View Controller icon in the row of icons at the top of the Root Controller Scene, press right mouse button and from popup menu drag from Triggered Segues | manual circle to the view controller we have just added and select Show from popup menu.
    • Click on segue between Root Controller and First View Controler and bring up Attributes Inspector (we can use mouse or shortcut Alt+Command+4).
    • In Storyboard Segue section as Identifier type SegueFromRootToFirst
    • Open FirstViewController.m file and add/modify
    • Add a button to the Root Controller, set correct constraints and title Show details
    • Press Show the Assistant editor button and Control-drag from the button to the Root Controller implementation
    • Open FirstViewController.m file and add/modify
  5. Step 5: run the application
    Now the application is ready to run.
  6. Step 6: passing data from root view to first view
    1. Add a text field to the Root Controller and set correct constraints.
    2. Create an outlet for this text field named textFieldRoot
    3. Add a property stringDataFromRoot to FirstViewController.h
    4. Modify viewDidLoad from FirstViewController.m file
    5. To RootController.h add
    6. Add to RootController.m the code
  7. Step 7: run the application
    Now the application is ready to run for the second time.
  8. Step 8: add programmatically a second view controller
    1. Create a new class named TempViewController as we did it in step 4.
    2. Add a button Next level to the FirstViewController.
    3. Add an action buttonPressNextLevel related to this button.
    4. To FirstViewController.h add
    5. Add View Controller to the storyboard.
    6. Single-click the yellow View Controller icon in the row of icons at the top of the View Controller Scene we have just added. Next press Alt+Command+3 to bring up the Identity Inspector. In the Custom Class section as Class select TempViewController.
    7. In storyboard, click on the Temp View Controller, click on the identity inspector and change the Storyboard ID to IDTempViewController. Also click the check that says Use Storyboard ID.
    8. In FirstViewController.m add/modify
  9. Step 9: run the application
    Now the application is ready to run for the third time.
  10. Step 10: add programmatically an infinite numer of view controllers
    1. Add a button Next level to the TempViewController.
    2. Add an action buttonPressNextLevel related to this button.
    3. In TempViewController.m add/modify
  11. Step 11: run the application
    Now the application is ready to run for the fourth time.