當我打開我的應用程序時,我的界面出現了一些問題,轉到背景並最終返回到前景。所以我想強制我的應用程序始終啓動應用程序,當我從背景中回來時。 我看到Clash Royale遊戲就是這樣工作的。 我正在用swift開發3從後臺回來後強制啓動應用程序。 Swift 3
0
A
回答
1
我不確切地知道你的主頁看起來像從背景返回後想要加載的內容,但是你應該能夠使用AppDelegate中的函數來能夠設置值並在從背景狀態返回時根據需要加載場景或視圖,或者在應用程序關閉時設置所需的視圖。
這是一個已經內置到AppDelegate中的函數列表。
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.
}
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.
}
func applicationWillEnterForeground(_ application: UIApplication) {
// Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
}
func applicationDidBecomeActive(_ application: UIApplication) {
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}
func applicationWillTerminate(_ application: UIApplication) {
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}
相關問題
- 1. iOS應用程序在轉換爲Swift 3後未啓動3
- 2. 控制檯應用程序從ASP.NET Webform啓動後崩潰
- 3. Android應用程序在後臺啓動
- 4. 在後臺啓動應用程序
- 5. 在後臺啓動應用程序
- 6. 在後臺啓動我的控制檯應用程序
- 7. 啓動後臺Win32控制檯應用程序
- 8. 安卓應用程序強制關閉後啓動畫面
- 9. 從後臺強制前景應用
- 10. 啓動屏幕後的強制關閉Android應用程序
- 11. Android後臺進程 - 從應用程序啓動到關閉
- 12. 添加清單後無法啓動控制檯應用程序
- 13. Swift 3:檢查應用程序是否在後臺
- 14. iOS在啓動時啓動後臺應用程序
- 15. 啓動我的android應用程序*在後臺*啓動
- 16. 設備重啓後在後臺自動運行應用程序
- 17. 殺死應用程序並啓動後,它在後臺運行
- 18. 當Android在後臺遇難後重新啓動應用程序
- 19. 從控制檯應用程序啓動控制檯應用程序
- 20. 從另一個應用程序在後臺啓動iOS應用程序
- 21. 從後臺恢復應用程序重新啓動整個APP?
- 22. 從Xcode啓動後臺提取時,應用程序未停止
- 23. 從正在運行的後臺服務啓動應用程序
- 24. 從應用程序內啓動後臺代理
- 25. 從後臺服務啓動應用程序
- 26. 從後臺服務重新啓動應用程序
- 27. 當從後臺恢復時重新啓動應用程序
- 28. 如何在後臺從命令行啓動GUI應用程序?
- 29. 清除應用程序數據,重新啓動後回來
- 30. 啓動後臺進程從shell腳本,然後帶回前臺後
你有沒有試過http://stackoverflow.com/a/3098252/1072229? –