iOS。每次应用程序从后台进入活动状态时,如何从头开始故事板?
标题描述了一切。是否可能以及如何做到?
Title describes it all. Is it possible and how to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
标题描述了一切。是否可能以及如何做到?
Title describes it all. Is it possible and how to do it?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
在 Info.plist 中设置
UIApplicationExitsOnSuspend
键(应用程序不在后台运行)Set the
UIApplicationExitsOnSuspend
key in your Info.plist (Application does not run in background)只需在应用程序中实现
-applicationDidBecomeActive:
方法即可。您可以执行任何通常执行的操作来设置应用程序的内部状态。事实上,如果您希望应用“重新开始”,您可以将大部分代码从-application:didFinishLaunchingWithOptions:
移动到-applicationDidBecomeActive:
。例如,您可以使用 UIStoryboard 的-instantiateViewControllerWithIdentifier:
重新加载初始视图控制器,然后将其设置为窗口的根视图控制器。Just implement the
-applicationDidBecomeActive:
method in your application. You can do whatever you'd normally do to set up the app's internal state. In fact, if you want the app to 'start over', you can probably move much of your code from-application:didFinishLaunchingWithOptions:
to-applicationDidBecomeActive:
. For example, you might use UIStoryboard's-instantiateViewControllerWithIdentifier:
to reload your initial view controller and then set it as the window's root view controller.