Classes:
- AppDelegate
- AppViewController
- OtherViewController
Currently the application opens in the AppViewController. I want to add a new view, the OtherViewController. However I want the a method in the AppViewController to save to a MutableArray that the OtherViewController can use to show information.
1- Where should I create the MutableArray, in the AppDelegate? And how do I then access it?
I would like the ability to swipe a object on the AppViewController to get the OtherViewController to slide on, and I would just use a back button on the OtherViewController to go back.
2- How can I switch between the Controllers?
Thanks for the help!