Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nurtugan/bda337ba4d0d1265480b2ced895a594d to your computer and use it in GitHub Desktop.
Save nurtugan/bda337ba4d0d1265480b2ced895a594d to your computer and use it in GitHub Desktop.
Removes NavigationBar's BackBarButtonItem Title
extension UIViewController {
func removeNavigationBarBackBarButtonItemTitle() {
let backButton = UIBarButtonItem()
backButton.title = ""
navigationController?.navigationBar.topItem?.backBarButtonItem = backButton
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment