[INFO] iOS 5 doesn't fire the OnApplicationQuit() event anymore

I was using it in my application, in order to save some game state at the app kill time, and everything used to work just fine, but it doesn’t get called anymore since I updated (tried a simple debug log).

This is to be verified of course, but it seems like it; if I’m right, I suggest a sticky to warn people about it. (In case a moderator comes around ^^).

:arrow: As a simple workaround, I myself moved my code to the ApplicationDidResignActive() event.

Since iOS4 that was not the right place to store anyway, the right one would have been OnApplicationPause which is called upon pausing after which the application can be terminated and unloaded without prior warning and without grace period by the iOS anyway

Thanks for the tip. Leads me to a question then: is OnApplicationPause() still called now? (unlike OnApplicationQuit())

[EDIT] forget about it, I tried it myself and it works. Thanks