gpt4 book ai didi

objective-c - UITableView+UINavigationBar+UITabbar 在基于 windows 的应用程序模板中使用界面生成器?

转载 作者:搜寻专家 更新时间:2023-10-30 20:23:45 25 4
gpt4 key购买 nike

我想要一个底部带有 UITabBAr 的 View ,每个 View 上有一些按钮 + 导航 Controller , View 内有一个 TableView ,使用界面生成器和基于 Windows 的应用程序模板。我想要一步一步的指导来做到这一点

最佳答案

这很简单。只需使用此功能创建您的 appdelegate:

- (void)applicationDidFinishLaunching {

TableSubclass *tvc = [[TableSubclass alloc] init]; //subclass of UITableView you declare

UINavigationController *navBar = [[UINavigationController alloc] initWithRootViewController:tvc];
navBar.tabBarItem.title = @"Foo";

NSArray *tabViewControllerArray = [NSArray arrayWithObjects:navBar, nil];
self.tabBarController.viewControllers = tabViewControllerArray;
self.tabBarController.delegate = self;

[tvc release];

}

现在,只需创建您的 UITableView 子类即可。

如果你想要多个 View ,而不仅仅是一个表,你可以声明更多的 View Controller 并将它们添加到 tabViewControllerArray。

关于objective-c - UITableView+UINavigationBar+UITabbar 在基于 windows 的应用程序模板中使用界面生成器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/920299/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com