I need to go to home page when I click on Home tab item. Even when I am in an inside page of any tab , any page.
Note : The whole tab bar controller is embedded in a navigation controller and navigated to tab bar controller from another page.
I need to go to home page when I click on Home tab item. Even when I am in an inside page of any tab , any page.
Note : The whole tab bar controller is embedded in a navigation controller and navigated to tab bar controller from another page.
Please try to remove your view controller from navigation stack before you select another tab.
self.navigationController!.viewControllers.removeAll() // to remove all view controllers from stack
self.navigationController?.viewControllers.remove(at: "insert here a index") // to remove specific view controller - enter index
Hope it works
Cheer :)