UITabBarItem标签中有多行

时间:2017-09-14 12:58:34

标签: ios swift uitabbaritem

我尝试过很多东西,但却无法找到一种方法来将UITabBarItem的标签放置为自定义的lineNumber.0(我希望在2行上获得标题)。

有办法吗?

4 个答案:

答案 0 :(得分:6)

现在它包含两个子视图。 0是imageView,1是标签。 现在使imageview的高度稍微小一些,这样你就可以给标签的高度稍微大一些,以便有多条线。通过代码将标签的属性ofnumberoflines设置为0.

let viewTabBar = tabBarItem.value(forKey: "view") as? UIView
let imageView = viewTabBar?.subviews[0] as? UIImageView
let label = viewTabBar?.subviews[1] as? UILabel

现在玩这个标签。

答案 1 :(得分:2)

更稳定的解决方案:

guard let view = tabBarItem?.value(forKey: "view") as? UIView,
        let label = (view.subviews.flatMap{ $0 as? UILabel }).first,
        let imageView = (view.subviews.flatMap{ $0 as? UIImageView }).first else { return }

答案 2 :(得分:1)

这是我的解决方案

我们需要在viewwillLayoutSubviews内部实现此功能。更新用户界面并使其正常工作

在此示例中,仅要自定义我的第三个标签栏项目

override func viewWillLayoutSubviews() {
    // acess to list of tab bar items
    if let items = self.tabBar.items {
        // in each item we have a view where we find 2 subviews imageview and label
        // in this example i would like to change
        // access to item view
        let viewTabBar = items[2].value(forKey: "view") as? UIView
        // access to item subviews : imageview and label
        if viewTabBar.subviews.count == 2 {
            let label = viewTabBar?.subviews[1]as? UILabel
            // here is the customization for my label 2 lines
            label?.numberOfLines = 2
            label?.textAlignment = .center
            label!.text = "tab_point".localized
            // here customisation for image insets top and bottom
            items[2].imageInsets = UIEdgeInsets(top: 8, left: 0, bottom: -5, right: 0)
        }
    }
}

这是结果 enter image description here

答案 3 :(得分:0)

您无法使用UIBarButtonItem执行此操作,因为它没有titleView之类的属性UINavigationItem

您只能将字符串设置为标题和标签图片!就是这样!

如果您可以选择将标签设置为tabbaritem的标题视图,那么您可以使用numberofline 0获取标签,但在这里您只能设置字符串!