You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This line is freezing TabBar. You could comment it because seems it has no sense. Function didSelectItem(_:) is already disabling user interaction so there is no point to disable the interaction for each TabBarItem.
Solved by adding (version 2.0.2 used) tabBarItem.addTarget(self, action: #selector(enableAllButtons), for: .touchUpInside)
into BATabBarController/BATabBarController/Classes/BATabBar.swift, just after the line tabBarItem.addTarget(self, action: #selector(disableAllButtonsBut(_:)), for: .touchDown)
Function enableAllButtons() should be marked as @objc func..
Comment by @onl1ner solved this, but pressing down on multiple tab items at once will bring you to a new issue
If you tap on the already selected item again, the whole tabbar freezes can't select anything afterwards.
The text was updated successfully, but these errors were encountered: