So I have a Navigation Controller in which for every row select, I push ViewController A. However, ViewController A is another table of items.
So I’m having trouble figuring out how to make ViewController A also act as a navigation controller, in which for ever row I select in ViewController A, I can push a view controller, which, we’ll name ViewController B.
I tried to add a Navigation Controller object inside an existing Navigation Controller to no avail.
How will I go about this?
Thanks in advance!
NavigationController has a rootController – in your case this is a some kind of table view controller. When you push view controller A – you use parent Navigation Controller. So you can push as many as you need view controllers via this “parent” navigation controller. Read carefully this section of apple docs