I\'m trying to edit the tile of the back item in the navigation controller.
I have this scene, Navigation Controller -> Table View Controller ->
Yes, you can do that with StoryBoard
. Select the NavgationItem
in TableViewController
that you have embedded in NavgationController
after that in the Attribute Inspector
set the Back Button
with title that you want in your case it is Back
.
The backBarButtonItem
works for the view controller that you are going back TO not the one you are going back FROM.
So, in your case in the first view controller you can have the code...
navigationItem.backBarButtonItem = UIBarButtonItem(title: "Some title", style: .done, target: nil, action: nil)