为了识别我的应用程序进入后台模式[单击主页按钮],我使用此功能:
func applicationDidEnterBackground(_ application: UIApplication) {
//...
}
但是我如何识别我的应用程序进入了应用程序切换模式[两次短主页按钮点击]?applicationDidEnterBackground
在这种情况下不调用该方法。
为了识别我的应用程序进入后台模式[单击主页按钮],我使用此功能:
func applicationDidEnterBackground(_ application: UIApplication) {
//...
}
但是我如何识别我的应用程序进入了应用程序切换模式[两次短主页按钮点击]?applicationDidEnterBackground
在这种情况下不调用该方法。
试试这个:
func applicationWillResignActive(_ application: UIApplication) {
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
}