Swift 4 - 如何覆盖标签栏将打开视图控制器
Swift 4 - How to override tab bar will open view controller
是否有可能当用户单击选项卡栏项目时我可以在 UITabBarController
中覆盖它,然后我检查 UserDefault
然后决定我是否显示视图或return
并且他们保持当前的观点?
会是这样的:
override func tabBar(_ tabBar: UITabBar, didSelect item: UITabBarItem) {
if item.image == UIImage(named: "TabProfile")
{
// Profile tab selected
if !loginController.isUserLogged()
{
// Not logged in...
showLoginView()
// Following line doesn't work...
tabBarController?.selectedIndex = selectedIndex
}
}
}
如果可能的话,我想执行此检查,如果 false
则实际上阻止视图到达 viewDidLoad
。
谢谢。
我猜你需要
func tabBarController(_ tabBarController: UITabBarController,
shouldSelect viewController: UIViewController) -> Bool {
if let ind = tabBarController.viewControllers!.index(of:viewController) , ind == 2 { // suppose profile is 2
//
if userNotLogged {
// present modal login view
return false
}
}
return true
}
是否有可能当用户单击选项卡栏项目时我可以在 UITabBarController
中覆盖它,然后我检查 UserDefault
然后决定我是否显示视图或return
并且他们保持当前的观点?
会是这样的:
override func tabBar(_ tabBar: UITabBar, didSelect item: UITabBarItem) {
if item.image == UIImage(named: "TabProfile")
{
// Profile tab selected
if !loginController.isUserLogged()
{
// Not logged in...
showLoginView()
// Following line doesn't work...
tabBarController?.selectedIndex = selectedIndex
}
}
}
如果可能的话,我想执行此检查,如果 false
则实际上阻止视图到达 viewDidLoad
。
谢谢。
我猜你需要
func tabBarController(_ tabBarController: UITabBarController,
shouldSelect viewController: UIViewController) -> Bool {
if let ind = tabBarController.viewControllers!.index(of:viewController) , ind == 2 { // suppose profile is 2
//
if userNotLogged {
// present modal login view
return false
}
}
return true
}