1

在 Xcode 4.5 中使用与不同选项卡视图链接的根视图控制器上的多个按钮的方法是什么?

我在主屏幕上有 4 个按钮,我希望流程像我点击 button1 时一样转到 tab1,当我点击 button2 时 tab2 应该打开。

我应该怎么办?请帮忙。如果有人知道任何教程的链接或可以为我提供指导,那将是一个主要的帮助 Dummy Code Ignore this。

{
   tabBarController.viewControllers = controllers;
    window.rootViewController = tabBarController;

}
4

2 回答 2

0

给按钮适当的标签。

在按钮单击事件上,获取按钮的标签。使用标签值选择该控制器。

tabController.selectedIndex = button.tag;
于 2013-08-29T14:44:14.790 回答
0

为按钮设置 IBActions 后,在方法块中,您可以在选项卡栏项目之间导航。第一个选项卡栏项目selectedIndextabBarController索引从 0 开始。如果您有 4 个选项卡,则索引将为 0-3。

- (IBAction)button1:(id)sender {
        self.tabBarController.selectedIndex = 0;
}
于 2013-08-29T16:52:21.110 回答