iOS。每次应用程序从后台进入活动状态时,如何从头开始故事板?

发布于 2025-01-08 00:05:47 字数 26 浏览 1 评论 0原文

标题描述了一切。是否可能以及如何做到?

Title describes it all. Is it possible and how to do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

眼眸印温柔 2025-01-15 00:05:47

在 Info.plist 中设置 UIApplicationExitsOnSuspend 键(应用程序不在后台运行

Set the UIApplicationExitsOnSuspend key in your Info.plist (Application does not run in background)

软糖 2025-01-15 00:05:47

只需在应用程序中实现 -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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文