gpt4 book ai didi

objective-c - 当 tabBarController/navController 在同一应用程序中时推送到详细 View 时出现问题

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

我在使用 self.navigationControllerpushViewControllertableView 推送到详细 View 时遇到一些困难。

我确定我的问题来 self 的 appdelegate.m 文件。我的应用程序首先加载一个窗口,然后加载一个选项卡栏 Controller 。现在我试图在我需要的页面上引入导航 Controller 。我正在尝试将两个不同的项目合并在一起。

任何帮助都会很棒!

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];

PDCWelcomeViewController *welcomeVC = [[PDCWelcomeViewController alloc] initWithNibName:@"PDCWelcomeViewController" bundle:nil];
self.slideUpNav = [[PDCSlideUpNavController alloc] initWithRootViewController:welcomeVC];
self.slideUpNav.navigationBarHidden = isUserLoggedIn;
self.window.rootViewController = self.slideUpNav;

[self.window makeKeyAndVisible];

return YES;



self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.viewController = [[ViewController alloc] init];
[self.viewController.view setBackgroundColor:[UIColor underPageBackgroundColor]];
UINavigationController *navControl = [[UINavigationController alloc] initWithRootViewController:self.viewController];
self.window.rootViewController = navControl;
[self.window makeKeyAndVisible];
return YES;

}

最佳答案

它只能加载PDCWelcomeViewController。在它之后有一个返回语句。因此,在该语句下面,代码没有任何值(value)。

关于objective-c - 当 tabBarController/navController 在同一应用程序中时推送到详细 View 时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13816793/

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