質問

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

is there any way to this??

Thanks in advance

役に立ちましたか?

解決

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

他のヒント

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

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top