I\'m new to iPhone development. I\'m building an app that loads data from a local sqlite3 DB in
- (BOOL)application:(UIApplication *)application didFinishLaunch
You can exit() your application when iOS notifies it that it should run in the background like so:
exit()
- (void)applicationDidEnterBackground:(UIApplication *)application { exit(0); }