Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何杀死所有在跳板中运行到后台的应用程序。
有什么办法吗?
提前致谢
您的应用程序只能与其沙箱内的内容交互,而不能更改其他应用程序的状态。
除了自己的应用程序之外,您不能杀死任何其他应用程序。但是要在您进入后台时终止您的应用程序,请键入:
exit(0);
在 UIApplicationDelegate 方法内部:
applicationDidEnterBackground
您会发现主要在您的应用程序委托类中