Ryan B.
Ryan B.

Reputation: 99

Push new Tab on Tabbed bar application

I have a Tabbed bar application and I have the "Feed" tab as the initial view. I want a Button on the Feed view controller to push the map view controller & Tab.

Tabbed Bar

Right now the button pushes the map fine, but the tabbed bar is still highlighting the "Feed" Section. Any Ideas?

Upvotes: 1

Views: 46

Answers (1)

Rashwan L
Rashwan L

Reputation: 38843

Change the tab programmatically by doing the following:

_ = self.tabBarController?.selectedIndex = 2

Where the index is the index of the tab you want to change to.

Upvotes: 1

Related Questions