gpt4 book ai didi

iphone - 如何向表格 View 添加导航栏?

转载 作者:行者123 更新时间:2023-11-29 05:01:04 25 4
gpt4 key购买 nike

我想以模态方式显示设置表,但在顶部获取导航栏(以显示标题和完成按钮)时遇到问题。我可以将栏作为 subview 添加到表格 View 中,但随后它会随表格 View 滚动,并且我希望它保持在顶部。

最佳答案

解决这个问题的最佳方法是在前一个 View 中声明一个 UINavigationController,然后自动获取导航栏,而不会中断当前 View 中的 tableview 行为。

来自 AppDelegate 的示例:

self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.viewController = [[ViewTestViewController alloc] initWithNibName:@"ViewTestViewController" bundle:nil];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:self.viewController];
self.window.rootViewController = nav;
[self.window makeKeyAndVisible];
return YES;

关于iphone - 如何向表格 View 添加导航栏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6944510/

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