LoginSignup
3
3

More than 5 years have passed since last update.

UINavigationControllerで遷移した先の、左上ボタンテキストを戻る等に変更したい

Last updated at Posted at 2015-06-15

遷移元のviewでBarbuttonItemを設定して渡す。actionはpopViewControllerAnimatedを入れておくと、標準の戻るメソッドを利用できる。

let backButtonItem = UIBarButtonItem(title: "戻る", style: .Plain, target: nil, action: "popViewControllerAnimated:")
navigationItem.backBarButtonItem = backButtonItem

遷移先でもLeftBarButtonItemで設定できるが、戻るの左に矢印が入らない。

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3