gpt4 book ai didi

ios - 有没有办法以编程方式重新启动我的 iOS 应用程序?

转载 作者:行者123 更新时间:2023-12-04 12:30:01 24 4
gpt4 key购买 nike

我想知道是否有任何方法可以以编程方式重新启动我的应用程序。这是一个 iOS 应用程序,我可以快速使用 Xcode 12.3。

最佳答案

iOS 中没有可用的方法来重新启动您的应用程序,但您可以手动重新实例化初始根 UIViewController需要的时候。

重新实例化根 UIViewController您可以在 AppDelegate 中使用以下静态函数类(class):

static func getWindow() -> UIWindow? {
return UIApplication.shared.keyWindow
}

static func resetViewController() {
let window = getWindow()

let controller = ... /// Instantiate your inital `UIViewController`

window?.rootViewController = controller
window?.makeKeyAndVisible()
}

注:
“重启”应用程序是一个 非常罕见的做法 应该避免 如果可能的话,在所有情况下。

关于ios - 有没有办法以编程方式重新启动我的 iOS 应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66205648/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com