修改tabbarItem的title导致shouldSelect拦截失效

最近在做国际化的项目,踩了一下tabbarController的坑(如有知道原因的朋友望留言告知,谢谢)。
首先说说国际化的思路,项目需求是实现应用内切换语言,而且不销毁栈里已有的界面,故思路如下:
1.记录当前选择的语言currentLanguageCode
2.通过bundle获取currentLanguage对应语言的国际化文件并载入内存

// 载入资源
let path = Bundle.main.path(forResource: currentLanguageCode, ofType: "lproj")
bundle = Bundle.init(path: path)

// 根据key获取string
return bundle?.localizedString(forKey: key, value: alternate, table: nil)

3.切换语言以后发送通知,在需要的地方重置界面

// tabbarController:
Vc1Ref?.title = LanguageTool.getText(forKey: "key1")
Vc2Ref?.title = LanguageTool.getText(forKey: "key2")
Vc3Ref?.title = LanguageTool.getText(forKey: "key3")
Vc4Ref?.title = LanguageTool.getText(forKey: "key4")
Vc5Ref?.title = LanguageTool.getText(forKey: "key5")


那么问题来了,先看看拦截代码

func tabBarController(_ tabBarController: UITabBarController, shouldSelect viewController: UIViewController) -> Bool {
    let nav: BaseNavigationController = viewController as! BaseNavigationController
    let vc: UIViewController = nav.childViewControllers.first!
    if vc.isKind(of: VC3.self) {
        let vc3 = UIStoryboard.init(name: "VC", bundle: Bundle.main).instantiateViewController(withIdentifier: "VC3") as! VC3
  
  
  
  tabBarController.present(BaseNavigationController(rootViewController: contactVc) , animated: true, completion: nil)
        return false
    }
    return true
}

假设当前tabbarController的selectedIndex为1,那么点击vc3的时候保持当前selectedIndex为1,并通过present弹出vc3,切换语言前一切都好好的,但是切换语言以后就变了,shouldSelect这个代理的返回值不管用了,代理仍然会走,vc3依旧会弹出,但是tabbarController中的vc3这个控制器能够被选中了,几经折腾仍然无果,我猜测是UITabbarController利用item的title做了一些事情,title改变以后就出现了一些异常情况,当然这个目前只是我的猜测,没有进行验证,希望指导原因的朋友留言告知。

最后为了满足需求,在tabbar的代理中又做了一次拦截

override func tabBar(_ tabBar: UITabBar, didSelect item: UITabBarItem) {
    super.tabBar(tabBar, didSelect: item)
    let index = self.tabBar.items?.index(of: item)
    if index == 2 {
        self.selectedIndex = lastIndex
    }else {
        lastIndex = index!
    }
}

你可能感兴趣的:(修改tabbarItem的title导致shouldSelect拦截失效)