How to line break long large title in iOS 11?

前端 未结 2 525
醉梦人生
醉梦人生 2021-01-01 02:21

I am trying to use the new large title system in iOS 11 using Swift. When the title gets too long (see image example), it adds ... instead of line breaking or shrinking the

2条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-01 02:42

    Try this:

    for navItem in (self.navigationController?.navigationBar.subviews)! {
        for itemSubView in navItem.subviews {
            if let largeLabel = itemSubView as? UILabel {
                largeLabel.text = self.title
                largeLabel.numberOfLines = 0
                largeLabel.lineBreakMode = .byWordWrapping
            }
        }
    }
    

    It worked for me.

提交回复
热议问题