我需要使用移动基板在iPhone上杀死正在运行的应用程序。任何人都可以帮我这样做吗?或者只是告诉我一个是否有可能/如果可能的话怎么做?
期待......
由于 SYAM
答案 0 :(得分:0)
只要您想通过代码终止应用程序
,就使用exit(0)
编辑:(由syam回答)
Class $SBApplicationController=objc_getClass("SBApplicationController") SBApplication *app=[[$SBApplicationController sharedInstance] applicationWithDisplayIdentifier:displayIdentfier];
if(app) [app kill];
快乐的编码......