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
UIViewController
Put the below code in any of the UIViewcontroller extension it will hide all the UIViewcontroller back text
UIViewcontroller extension
UIViewcontroller
open override func awakeFromNib() { navigationItem.backBarButtonItem = UIBarButtonItem(title: "", style: .plain, target: nil, action: nil) }