How to remove all navigationbar back button title

后端 未结 30 3288
后悔当初
后悔当初 2020-12-12 15:42

When I push a UIViewController, it has some title in back button at new UIViewController, if the title has a lot of text, It does not look good in

30条回答
  •  囚心锁ツ
    2020-12-12 15:52

    Put the below code in any of the UIViewcontroller extension it will hide all the UIViewcontroller back text

    open override func awakeFromNib() {
            navigationItem.backBarButtonItem = UIBarButtonItem(title: "", style: .plain, target: nil, action: nil)
        }
    

提交回复
热议问题