gpt4 book ai didi

iphone - UINavigationController 与 PresentModalViewController

转载 作者:行者123 更新时间:2023-12-03 20:21:39 25 4
gpt4 key购买 nike

我有一个实现 UINavigationController 的菜单屏幕,在该屏幕顶部,使用 presentModalViewController,我放置了另一个屏幕,我想在该屏幕上放置另一个 UINavigationController 。我尝试实现另一个导航 Controller 来处理新屏幕,但导航栏要么在屏幕下方的 1/8 处,要么崩溃,要么什么也没有。我尝试过 [[UINavigationController alloc] initWithRootViewController:navigationConroller] 也没有成功。我只是使用 pushViewController 尝试将下一个 Nib 放在堆栈上,但这不起作用。我做错了什么?

最佳答案

尽管论坛上有很多人说苹果不允许这样做,但我已经让它发挥作用了。你要做的是:

Map *mapScreen = [[[Map alloc] init] autorelease];
mapScreen.delegate = self;

UINavigationController *navController = [[[UINavigationController alloc] initWithRootViewController:mapScreen] autorelease];

[self presentModalViewController:navController animated:YES];

关于iphone - UINavigationController 与 PresentModalViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1622956/

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