Я не совсем уверен, что это именно то, что вы имеете в виду, но если вы хотите вызвать функцию / сделать что-то прямо перед тем, как ваше приложение войдет в фоновый режим (что происходит, когда кто-то дважды нажимает кнопку «Домой»), вы можете использовать значение по умолчанию applicationWillResignActive(_:)
или applicationDidEnterBackground(_:)
функция в классе AppDelegate.См. Apple Docs для получения дополнительной информации о состояниях и функциях приложения.Если вы хотите выполнить код после завершения приложения, используйте applicationWillTerminate(_:)
.
Итак, в AppDelegate.swift (я специально оставил исходный комментарий Xcode по умолчанию для пояснения):
class AppDelegate: UIResponder, UIApplicationDelegate {
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.
yourGoToBackgroundFunction()
}
func applicationDidEnterBackground(_ application: UIApplication) {
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
yourSaveDataFunction()
}
func applicationWillTerminate(_ application: UIApplication) {
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
yourSaveDataFunction()
}
}