This question already has answers here:
What is the Life Cycle of an iPhone application? [closed]

(4个答案)


3年前关闭。




我正在寻找一种行为像android中的onDestroy()的快速方法。我希望在按下主页按钮时不要调用它,而应该在应用程序完全退出时才调用它。我尝试使用deinit方法,但从未被调用。

最佳答案

在iOS环境中合适的等效项是applicationWillTerminate(_:)中的AppDelegate

请记住,异步操作无法在此处正确执行

09-12 08:58