An Additional UIViewController

To see the real power of UINavigationController, you need another UIViewController to put on the navigation controller’s stack. Create a new Objective-C class (FileNewNew File...). Name this class DetailViewController and choose UIViewController as the superclass. Check the box With XIB for user interface (Figure 11.6).

Figure 11.6  View controller with XIB subclass

View controller with XIB subclass

In DetailViewController.m, delete all of the code between the @implementation and @end directives so that the file looks like this:

#​i​m​p​o​r​t​ ​"​D​e​t​a​i​l​V​i​e​w​C​o​n​t​r​o​l​l​e​r​.​h​"​ @​i​m​p​l​e​m​e​n​t​a​t​i​o​n​ ​D​e​t​a​i​l​V​i​e​w​C​o​n​t​r​o​l​l​e​r​ ...

Get iOS Programming: The Big Nerd Ranch Guide now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.