Reputation: 99
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.
Right now the button pushes the map fine, but the tabbed bar is still highlighting the "Feed" Section. Any Ideas?
Upvotes: 1
Views: 46
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