I have apps with a Deployment Target of 3.0 that save upon applicationWillTerminate.
To update for 4.0 I want to add
- (void)applicationDidEnterBackground

UIApplication *)someGameAppDelegate {
[self saveData];
}
But I am worried that this will cause customers running 3.x to crash. Can someone guide me on this?
Thanks!