gpt4 book ai didi

ios - 当使用新的 ViewController 更新 View 时,UINavigationController 必须调用方法

转载 作者:行者123 更新时间:2023-11-29 05:08:45 24 4
gpt4 key购买 nike

我有一个 UINavigationControllerSubclass。当 View Controller 弹出到某个新的 View Controller 时(通过 navigationController.popViewControllernavigationController.popToRootViewController 甚至通过手动从左向右滑动)

我需要在导航 Controller 内部调用:

viewController.newTopViewController.updateBackButtonTitle()

实现这一目标的最佳方法是什么?

最佳答案

一种方法如下:

class CustomNavigationController: UINavigationController {

override func popToRootViewController(animated: Bool) -> [UIViewController]? {
shouldUpdateBackButtonTitle()
return super.popToRootViewController(animated: animated)
}

override func popViewController(animated: Bool) -> UIViewController? {
shouldUpdateBackButtonTitle()
return super.popViewController(animated: animated)
}

private func shouldUpdateBackButtonTitle() {
viewController.newTopViewController.updateBackButtonTitle()
}
}

关于ios - 当使用新的 ViewController 更新 View 时,UINavigationController 必须调用方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59893629/

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