I am attempting to make my game persist its current state and reload it when a user exits or restarts the game. What I am struggling with, however, is how to actually get access to the objects at the right time. Here is the pseudo code for what I need, I just cant seem to get access to the right objects, am I doing this backwards or is this the correct way to do it?
So to reiterate, my problem here is getting access to the correct ViewControllers
in order to save / load the data from disk.
My Navigation hierarchy is simple, ViewController > GameViewController
(shown modally)
-(void)applicationDidEnterBackground:(UIApplication *)application
{
// Save current state to disk
// See if GameViewController (or GameView) is top controller (aka game in progress)
// If so then use NSKeyedArchiver to persist to disk
}
-(void)applicationDidBecomeActive:(UIApplication *)application
{
// Load current state from disk
// Use NSKeyedArchiver to load data from disk, if game is in progress then
// Find mainViewController, then show the game modal on top of it
// then populate the game data with the data from disk
}
Bonus question: Are these two functions the correct ones to be doing my saving / loading in?
lternatively you could set up a notification handler wherever you want/need in your code: