ESTabBarController icon indicating copy to clipboard operation
ESTabBarController copied to clipboard

RTL

Open pedroOliveiraptc opened this issue 7 years ago • 2 comments

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 :/

pedroOliveiraptc avatar Oct 23 '18 13:10 pedroOliveiraptc

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]
    }

Alfulayt avatar Nov 02 '18 08:11 Alfulayt

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

subhashsanghani avatar Jul 19 '19 11:07 subhashsanghani