Hi, Im working off the seismic xml iphone example. In that example there is simply the application delegate which has a rootViewController of type UITableViewController.
I wanted to modify it slightly so that I would have a navigationController and use its rootViewController as the table view. My root view controller class for my navigation controller is named "firstLevelViewController"
In the sample code it says
[rootViewController.tableView reloadData];
I want to say [navController.firstLevelViewController.tableView reloadData]
but I get errors saying "request for member firstLevelViewController in something is not a structure or union"
How can I reference the rootViewController of the navigationcontroller from the main app delegate?