Chapter 7 ViewTaskController - Dynamic Nav Bar Title
In ViewTaskController.m, I'd like to create a dynamic Nav Bar Title instead of the static Nav Bar Title that would grab and dynamically create the Nav Bar title from whichever specific Task is selected on the RootViewController and then display that specific Task's name in the ViewTaskController Nav Bar.
If anyone can share any information on how to modify the viewDidLoad or any other areas in order to achieve this, I'd greatly appreciate it.
Thanks in advance for your help.
- (void)viewDidLoad {
[super viewDidLoad];
self.navigationItem.title = @"Task Detail";
|