如何在 applicationWillTerminate( ) 中调用 API 并获得服务器响应的一些时间

How to Call an API in applicationWillTerminate( ) and get some time for response from the server

很抱歉问题重复,在对“如何在 applicationWillTerminate() 中调用 Api”这个问题进行了长期研究之后,却一无所获。有两种解决方案,但有些对我不起作用。找到的解决方案:

如果您的应用程序处于 applicationWillTerminate 状态或应用程序处于终止状态,则无法调用 API。

应用程序只允许保存 applicationWillTerminate 状态的即时更改

func applicationWillTerminate(_ application: UIApplication) {
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
// Saves changes in the application's managed object context before the application terminates.
CoreDataManager.sharedManager.saveContext()
}