I've got a main menu using a UITableView which can successfully push and display other ViewControllers to the fore. However, within these pushed controllers I wish to be able to push other controllers onto the navigationController stack. self.navigationController in a pushed ViewController seemingly does not reference anything, so when I do [self.navigationController pushViewController:nextVC animated:YES]; nothing happens. What am I doing wrong?
1
votes
could you post the according code?
- schaechtele
The way to do this is definitely using self.navigationController. Please post the code that does the first push onto the navigation stack
- Zaky German
2 Answers
0
votes