gpt4 book ai didi

ios - 使用 Swift 在 iOS 中全局检测屏幕转换(切换)

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:56:12 28 4
gpt4 key购买 nike

我想知道是否有一种方法可以在应用程序中全局检测屏幕切换,例如来自应用代表?我知道有像 isMovingFromParentViewController() 和 isMovingToParentViewController() 这样的方法,但这些方法只能在本地使用。任何信息都会有所帮助,谢谢!

克里斯蒂安

最佳答案

如果您要使用全局 UINavigationController 作为 AppDelegateUIWindowrootViewController以下方式。

let navigationController:UINavigationController = UINavigationController(rootViewController: ViewController())
navigationController.delegate = self

window = UIWindow(frame: UIScreen.main.bounds)
window?.rootViewController = navigationController
window?.makeKeyAndVisible()

然后 UINavigationControllerDelegate 中的以下委托(delegate)方法将在 AppDelegate 中完成工作

func navigationController(_ navigationController: UINavigationController, didShow viewController: UIViewController, animated: Bool) {

}

func navigationController(_ navigationController: UINavigationController, willShow viewController: UIViewController, animated: Bool) {

}

当新的 UIViewController 出现在 UINavigationController 中时,上述函数将对您有所帮助。不幸的是,没有与 UIWindow 相关的方法来观察这些变化。如果有帮助,请告诉我。

关于ios - 使用 Swift 在 iOS 中全局检测屏幕转换(切换),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40532615/

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