Multitasking - how do you get the app to not restart?

Currently if someone switches to another app while mine is running, when I come back to my app it restarts. I have seen some Corona apps pause the game so that when you come back to it, it starts from the pause screen instead of completely restarting. How is this done?

In build.setting add UIApplicationExitsOnSuspend = false, like this:

1
2
3
4
5
6
7
8
9
10
iphone =
        {
                plist =
                {
                        MinimumOSVersion="4.0.0",
                        UIStatusBarHidden = true,
                        UIPrerenderedIcon = true,
                        UIApplicationExitsOnSuspend = false
}
}

in your build.settings, have

1
2
3
4
5
6
7
8
9
10
11
settings =
{
        iphone =
        {
                plist =
                {
                        UIApplicationExitsOnSuspend = false
                },
        },
 
}

Great, thanks guys.

views:1315 update:2011/9/28 21:38:26
corona forums © 2003-2011