我想在UIHostingController
中插入一个新标签,即UITabBarController
的SwiftUI视图,就像这张图片一样:
视图非常简单,
ContentView.swift
struct ContentView: View {
var body: some View {
ZStack {
Color(.red).opacity(0.2).edgesIgnoringSafeArea(.all)
NavigationView {
Text("Hello")
}
}
}
在 AppDelegate.swift (禁用的场景)中,我得到viewControllers
并像这样插入:
let controller = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(identifier: "TabBarController") as! UITabBarController
let view = ContentView()
let viewController = UIHostingController(rootView: view)
controller.viewControllers?.insert(viewController, at: 0)
let item = controller.tabBar.items![0]
item.title = "Tab"
window.rootViewController = controller
self.window = window
window.makeKeyAndVisible()
结果如上图所示,可以。但是当我将Text
放入NavigationView
时,就像这样:
var body: some View {
ZStack {
Color(.red).opacity(0.2).edgesIgnoringSafeArea(.all)
NavigationView {
Text("Hello")
}
}
}
那么结果是:
有一个灰色的空白栏,看起来和那里的标签栏相等,如何将其删除?
我尝试通过以下方式隐藏标签栏:
tabBarController.tabBar.isHidden = true
是的,它已经消失了,但是我不想隐藏tabBar。任何帮助,谢谢!
答案 0 :(得分:0)
我终于解决了,方法是删除情节提要中的UITabBarController
并重新添加。旧版本由较旧的Xcode版本添加。我比较了两个UITabBarController
,没有看到界面生成器的区别。