Skip to content

Instantly share code, notes, and snippets.

@anzfactory
Last active August 29, 2015 14:15
Show Gist options
  • Save anzfactory/8ff4d65ebccfeb0ded75 to your computer and use it in GitHub Desktop.
Save anzfactory/8ff4d65ebccfeb0ded75 to your computer and use it in GitHub Desktop.
UINavigationControllerのBackButtonのタイトルを一括で変更
class HogeNavigationController: UINavigationController, UINavigationControllerDelegate {
override func viewDidLoad() {
super.viewDidLoad()
self.delegate = self; // delegateセット
}
// MARK: UINavigationControllerDelegate
func navigationController(navigationController: UINavigationController, willShowViewController viewController: UIViewController, animated: Bool) {
let backButton: UIBarButtonItem = UIBarButtonItem()
backButton.title = ""
viewController.navigationItem.backBarButtonItem = backButton;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment