which method be called-back when switching between tab bar view?

868 Views Asked by At

My initial question is:

enter image description here

I want to change the navigation item (both title and button when switching between tabs).

I tried the answer : Storyboard navigation controller and tab bar controller. It says:

self.parentViewController.navigationItem setTitle:@"Title"];

add to viewDidLoad in each view controller works.

However, when I re-enter the view, the tile won't change. I think it means viewDidLoad won't get called-back when re-entering.

Any solution about Storyboard navigation controller and tab bar controller ?

2

There are 2 best solutions below

0
On

It would be better to have a navigation controller for each tab in you tab bar. Then you can set your titles right in the storyboard.

0
On

You're looking for viewWillAppear:. Here's Apple's documentation. This method will be called on the controller that is being presented, or being transitioned to. viewWillDisappear: (documentation here) is called on the controller that is being transitioned away from.