简体   繁体   中英

Go to home page tab on click on tab item from each and every 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 :)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM