以编程方式为 ViewController 创建标签栏
Posted
技术标签:
【中文标题】以编程方式为 ViewController 创建标签栏【英文标题】:Programmatically creating tab bar for ViewController 【发布时间】:2013-06-11 07:48:22 【问题描述】:我一直在考虑以编程方式将标签栏添加到我的视图控制器,因为如果没有滚动视图,我无法将它放在我的视图中间。我对如何添加它有点困惑。是否需要在我的ViewDidLoad
方法或我的AppDelegate
中启动?
如果我有:
UITabBarController *tabBar = [[UITabBarController alloc] init];
[self.view addSubview:tabBar.view];
[tabBar release];
如何将它分配到我的scrollview
的底部?
谢谢!
现在在我的 appDelegate 类中:
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.viewController = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil];
UITabBarController *tabBarController = [[UITabBarController alloc] init];
ViewController* vc = [[ViewController alloc] init];
NSArray* controllers = [NSArray arrayWithObjects:vc, tabBarController, nil];
tabBarController.viewControllers = controllers;
[_window addSubview:tabBarController.view];
self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible];
return YES;
它崩溃了,不确定它是否是我错过的版本。
编辑: 对于其他在 Appdelegate.m 中想知道这一点的人:
self.tabBarController = [[[UITabBarController alloc] init] autorelease];
self.tabBarController.viewControllers = @[viewController1, viewController2, viewController3, viewController4];
【问题讨论】:
NSArray* controllers = [NSArray arrayWithObjects:vc, tabBarController, nil];
为什么要加tabBarController
?
是的,我在问题中添加了编辑以显示对我有用的方法
还有一件事是:您在viewControllers
数组中添加了tabBarController
,这是错误的。这就是我在答案中添加的内容。
【参考方案1】:
查看 Apple 提供的此文档:ViewControllers。
示例代码:
- (void)applicationDidFinishLaunching:(UIApplication *)application
UITabBarController *tabBarController = [[UITabBarController alloc] init];
FirstViewController* vc1 = [[FirstViewController alloc] init];
SecondViewController* vc2 = [[SecondViewController alloc] init];
NSArray* controllers = [NSArray arrayWithObjects:vc1, vc2, nil];
tabBarController.viewControllers = controllers;
// Add the tab bar controller's current view as a subview of the window
[window addSubview:tabBarController.view];
【讨论】:
只是一件小事:[self.window addSubview:tabBarController.view];
【参考方案2】:
我是这样做的。我从我的 App Delegate 复制了这个,它工作正常。基本上,您将视图控制器添加到选项卡栏,然后将选项卡栏添加到窗口的子视图。
实例化实例
iVacationTabBar = [[UITabBarController alloc] init];
无论您如何创建视图/视图控制器:
UINavigationController *rvc_tools = [[UINavigationController alloc] initWithRootViewController: vc_tools];
UINavigationController *rvc_settings = [[UINavigationController alloc] initWithRootViewController: vc_settings];
UINavigationController *rvc_about = [[UINavigationController alloc] initWithRootViewController: vc_about];
UINavigationController *rvc_currentpage = [[UINavigationController alloc] initWithRootViewController: vc_currentpage];
UINavigationController *rvc_backup = [[UINavigationController alloc] initWithRootViewController:vc_backup];
将控制器添加到数组中:
NSArray* controllers = [NSArray arrayWithObjects: rvc_currentpage, rvc_tools,rvc_settings, rvc_backup, rvc_about, nil];
将视图控制器数组设置为您的标签栏:
[iVacationTabBar setViewControllers: controllers animated:NO];
将标签栏添加到窗口的子视图中。
[_window addSubview:iVacationTabBar.view];
【讨论】:
【参考方案3】:您不能在UIViewController
上添加UITabbarController
。相反,在ViewController
上,您必须显示TabbarController
,创建TabbarController
,为其设置ViewController
s,并将其添加到Window
。
【讨论】:
以上是关于以编程方式为 ViewController 创建标签栏的主要内容,如果未能解决你的问题,请参考以下文章
以编程方式创建的 rootviewcontroller 未显示分配的 viewcontroller 的内容
以编程方式从 CollectionView 单元推送 viewController 不起作用 - swift
以编程方式创建的 ViewController 在 Storyboard 上看起来不像
MonoTouch 以编程方式为 ContainerView 实例化 ViewController
以编程方式从 collectionView Cell didSelectItemAt 推送到新的 ViewController - swift