iPhone : how to kill background running application from springboard?

681 Views Asked by At

How to kill all applications which are running into background in springboard.

is there any way to this??

Thanks in advance

2

There are 2 best solutions below

0
On BEST ANSWER

your app can only interact with what is inside its sandbox, and cannot change the state of other apps.

0
On

You cannot kill any other apps than your own. But to kill your app when you enter background, type:

         exit(0);

Inside the UIApplicationDelegate method:

             applicationDidEnterBackground

You will find that in mainly your app delegate class