Hi,
I've got a tableViewController application with a navigationBar. On the app launch, I check a condition and load different views based on the result of it.
In the newly loaded view, I've retrieved a reference of the appDelegate as..
Code:
LoadAppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
In the newly loaded view, which is a table view, I'm able to retrieve the title of the rootviewNavigationBar with the following code.
Code:
appDelegate.loadTabController.navigationItem.title
But when I try to push a viewController by clicking on a cell, it does not navigate to another view, nor does it display any error in the console.
Code:
[appDelegate.loadTabController.navigationController pushViewController:newViewController animated:NO];
Request you to please help.