I have a menu view (Menu.xib) that has several options. One of the options is 'Games' which when touched goes to a list of games (GamesList.xib). On this view there is an '+' button to add a new game (AddGame.xib).
What I would like to do is from the menu, click Add Game option which will load GamesList and then AddGame. So when I have added the game it goes back to the GamesList not the menu.
I have tried to push a new view controller (the AddGame controller) from the viewWillAppear message of the GamesList controller. But this causes the view navigation to go wrong.
There must be a simple solution. Thanks