Possible Duplicate:
Want app upgraded to 4.0 to exit completely when home button pressed
When the user closes the app with the home button, how can I make the app reload with the splash screen and not where they last left the application.
So it as if they are opening the application for the first tim each time as I would like them to be presented with the intro view which has options all the time.
Thanks
As you said, iOS4.0has multi-tasking feature(i.e.,) to run your apps in background.. To stop your XCode application running in the background, open info.plist in your application .
Right click -> Add Row -> Select “Application does not run in the Background” option
Make sure to check the checkbox, right side to it.
I hope this should help you.