popToRootViewController 切换到tabBa
2020-03-06 本文已影响0人
喵喵粉
popToRootViewController
切换到tabBarController
页面出现了tabBar
不显示的问题,将selectedIndex = index
这句放到前面。
///回到tab的第N个页面
extension UIViewController {
func extPopToTabBarIndex(_ index: Int) {
self.tabBarController?.selectedIndex = index
navigationController?.popToRootViewController(animated: true)
}
}