20

在此处输入图像描述

我有这个.. 如何使用 iOS5 故事板添加另一个选项卡屏幕,以便“帐户”可以有 3 个屏幕。

账户 ---> 账户列表 ---> 账户详情

4

2 回答 2

50

您首先放入一个新的 ViewController,然后按住 Ctrl 键从 Tab Bar Controller 拖动到该新控制器。

这会弹出一个弹出窗口,您可以在其中选择“添加关系 Segue”。这会将其连接为第三个选项卡。

于 2012-09-03T04:07:26.477 回答
3

这可以通过编程方式完成:

// Tab Controller
UITabBarController *tabBarController = [[UITabBarController alloc]init];

// Views to be accessed
UIViewController *controllerOne = [[UIViewController alloc]init];
UIViewController *controllerTwo = [[UIViewController alloc]init];
UIViewController *controllerThree = [[UIViewController alloc]init];

// Store UIViewControllers in array
NSArray* screenControllers = [NSArray arrayWithObjects:controllerOne, controllerTwo, controllerThree, nil];

// Add Views to Controller
tabBarController.viewControllers = screenControllers;

或使用InterfaceBuilder

  • 将“标签栏项目”添加到左侧面板中的视图层次结构

    在此处输入图像描述

或使用情节提要

iOS 故事板(向下滚动/搜索“只需将其添加到我的选项卡”)

于 2012-04-26T13:25:26.247 回答