自定义UItabBar项目顺序

时间:2010-12-21 15:20:07

标签: iphone uitabbar

我想更改UITabBar项目的顺序 然后当我再次登录时,应保持订单。

如何做到这一点?有谁能够帮我?我浪费了一整天来实现这一点。

1 个答案:

答案 0 :(得分:0)

如果你愿意以编程方式进行,那应该相当简单: 保留每个视图的索引,然后按照加载的相同顺序将每个视图添加到数组:

  //construct your view controllers somehow and add them to an array in the order you want them to be:
    [myArr addObject:viewCon1];
    [myArr addObject:viewCon3];
    [myArr addObject:viewCon2];

使用数组

构建标签栏
_tabControl = [[UITabBarController alloc] init];
[_tabControl setViewControllers:myArr  animated:YES];