gpt4 book ai didi

swift - 带有自定义 View 的 UIBarButtonItem 不适用于 UIHostingController

转载 作者:行者123 更新时间:2023-12-05 05:39:20 25 4
gpt4 key购买 nike

假设我们有 UIWindowUINavigationController 作为 rootViewController

window = UIWindow()
window!.makeKeyAndVisible()
let navigationController = UINavigationController()
window.rootViewController = navigationController

然后是带有一些虚拟 SwiftUI View 的基本 UIHostingController

let controller = UIHostingController(rootView: SomeView())
navigatonController.setViewControllers([controller], animated: false)

我的问题是,当我想将 UIBarButtonItem 添加到 UIHostingController 时,它不起作用并且表现得像它的 nil (没有框架在调试 View 层次结构中)。

controller.navigationItem.leftBarButtonItem = UIBarButtonItem(customView: CustomButton())

当我将完全相同的代码从 UIHostingController 更改为 UIViewController 时,它工作正常。

controller = UIViewController()

有什么办法解决这个问题吗?

最佳答案

使用工作变体

let controller = UIViewController()
controller.navigationItem.leftBarButtonItem = UIBarButtonItem(customView: CustomButton())

并将托管 Controller 作为该 Controller 的子级注入(inject)

let hosting = UIHostingController(rootView: SomeView())
controller.view.addSubview(hosting.view)

// set up view constraints here for `hosting.view`

controller.addChild(hosting)
hosting.didMove(toParent: controller)

关于swift - 带有自定义 View 的 UIBarButtonItem 不适用于 UIHostingController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72718923/

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