如何在进入后台或恢复到前台时重定向到主屏幕
Posted
技术标签:
【中文标题】如何在进入后台或恢复到前台时重定向到主屏幕【英文标题】:How to redirect to home screen upon going to background or resuming to the foreground 【发布时间】:2018-05-01 01:02:58 【问题描述】:我有一个关于应用程序生命周期和 Swift 编程的简短问题。每当用户进入后台时,我都会尝试返回主屏幕。例如,如果用户接到电话或按下主页按钮,应用程序应该返回到它开始的主屏幕,而不是它离开的地方。
func applicationWillEnterForeground(_ application: UIApplication)
guard let vc = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(
withIdentifier: "main") as? MainViewController else return
self.window?.rootViewController?.present(vc, animated: true, completion: nil)
上面是我在appDelegate中的代码,但不知何故它给出了一个错误:尝试在...上呈现...,其视图不在窗口层次结构中!”
请帮帮我。非常感谢!!
【问题讨论】:
【参考方案1】:您需要忘记最后一个 rootViewController,而不是显示当前的 rootViewController。忘记现有的窗口也很棒。使用代码:
func applicationWillEnterForeground(_ application: UIApplication)
guard let vc = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(
withIdentifier: "main") as? UINavigationController else
print("NIL VC")
return
self.window = UIWindow(frame: UIScreen.main.bounds)
self.window?.rootViewController = vc
self.window?.makeKeyAndVisible()
【讨论】:
以上是关于如何在进入后台或恢复到前台时重定向到主屏幕的主要内容,如果未能解决你的问题,请参考以下文章
如何在通知点击时重定向到特定的 ViewController?
当 iphone 应用程序进入后台或前台状态时,如何保存数据?