views:

24

answers:

1

Say I have NavigationController->Root[Table View Controller subclass] So from didSelectRowAtIndexPath of my Table View Controller subclass I have to push another view controller to NavigationController.

What is the most elegant way to access NavigationController? Should I use have delegate of NavigationController in my Table View Controller? Is this best approach if I have multiple tasks of accessing top object from hierarchy levels?

+1  A: 

Just use self.navigationController.

Ole Begemann
Things were much more easy that we imagine :) thx, will accept now
Michael