ESTabBarController
ESTabBarController copied to clipboard
RTL
I guys this bar work on RTL ? I am try to make it with the option semanticContext, and the position of elements change, but when a press on the last one it will select the first one :/
I find a simple solution just change the order of viewControllers if the app is RTL
tabBarController.viewControllers = [v1, v2, v3, v4, v5]
if !sys.isEn() {
tabBarController.viewControllers = [v5, v4, v3, v2, v1]
}
Hi i have same issue while using arabic RTL,
When i added five menu, When i select Last it open and hilight first, If i select second last it open and highlite Second.
I think some direction issue, please help me to solve it