TabBar高度太大

发布于 2025-01-10 22:04:07 字数 913 浏览 0 评论 0原文

请有人解释一下,为什么当我以编程方式创建它时会有这么大的 TabBar?

viewControllers = [
        createNavController(for: AssetViewController(), title: NSLocalizedString("Search", comment: ""), image: UIImage(systemName: "magnifyingglass")!),
        createNavController(for: AssetViewController(), title: NSLocalizedString("Home", comment: ""), image: UIImage(systemName: "house")!),
        createNavController(for: AssetViewController(), title: NSLocalizedString("Profile", comment: ""), image: UIImage(systemName: "person")!)
    ]
func createNavController(for viewController: UIViewController, title: String, image: UIImage) -> UIViewController {
    viewController.tabBarItem.title = "Wallet"
    viewController.tabBarItem.image = image

    return viewController
}

输入图片此处描述

can please someone explain, why do I have such a huge TabBar when I create it programmatically?

viewControllers = [
        createNavController(for: AssetViewController(), title: NSLocalizedString("Search", comment: ""), image: UIImage(systemName: "magnifyingglass")!),
        createNavController(for: AssetViewController(), title: NSLocalizedString("Home", comment: ""), image: UIImage(systemName: "house")!),
        createNavController(for: AssetViewController(), title: NSLocalizedString("Profile", comment: ""), image: UIImage(systemName: "person")!)
    ]
func createNavController(for viewController: UIViewController, title: String, image: UIImage) -> UIViewController {
    viewController.tabBarItem.title = "Wallet"
    viewController.tabBarItem.image = image

    return viewController
}

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风蛊 2025-01-17 22:04:07

检查您的导航视图控制器框架(高度约束)

检查您的 tabar 约束
例子:
self.tabBar.frame = CGRect(x:frame.origin.x, y: UIScreen.main.bounds.size.height - 80, 宽度: UIScreen.main.bounds.size.width, 高度: 80)

check your Navigation view controller frame (height constraint)

and

check your tabar constraint
example:
self.tabBar.frame = CGRect(x: frame.origin.x, y: UIScreen.main.bounds.size.height - 80, width: UIScreen.main.bounds.size.width, height: 80)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文