OnApplicationQuit and iOS4+

Is there no way to make OnApplicationQuit() to get called when the user quits the application in iOS? OnApplicationPause() for example works Ok, but the first one just isn’t called. I’ve tested my code on other platforms and it all works well. This means there is a problem with iOS (which I hate) regarding OnApplicationQuit(). Are there any workarounds? Thanx

You can use ExitOnSuspend in the player settings, but generally in iOS you don’t quit apps. Instead they are just suspended. The OS quits apps for you as necessary, whenever it needs RAM.

–Eric