gpt4 book ai didi

iphone - 带有当前 modalviewcontroller 的 UInavigation Controller 在 UItableviewcontroller 中不起作用

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

我创建了一个具有表格 View 的应用程序。我需要为此添加标题和后退按钮。这是我在 viewcontroller.m 文件中的代码

-(IBAction)go:(id)sender{

TableViewController *sec=[[TableViewController alloc]init];

sec.modalTransitionStyle=UIModalTransitionStyleCrossDissolve;
[self presentModalViewController:sec animated:YES];

self.title=@"test title";

UINavigationController* navController = [[UINavigationController alloc] initWithRootViewController:sec];
[self.navigationController presentModalViewController:navController animated:YES];
[navController release];
[sec release];
}

我现在需要添加后退按钮,但我的标题栏未显示。请指导。

最佳答案

您想要使用导航 Controller 的“push...”方法。在您的应用程序委托(delegate)中,您创建一个 UINavigationController,创建窗口的 Root View ,然后创建一个 UIViewController 子类并将其作为 UINavigation Controller 的 Root View 。当此 View 出现时,它将显示一个 UINavigationBar。

然后您创建这个新的 TableView ,并且您的 UIViewController 使用

“插入”该 View
- (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated

我是不是错过了什么???

关于iphone - 带有当前 modalviewcontroller 的 UInavigation Controller 在 UItableviewcontroller 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11600250/

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