gpt4 book ai didi

iphone - 模态视图中的导航 Controller ?

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

我正在使用导航 Controller 。我的 RootViewController 推送了许多 View ,但它也呈现了一个模态视图。该模态视图呈现一个 tableView。所以我想做的是弄清楚我可以将导航 Controller 推送到模态视图上,然后从该模态视图中使用它来推送带有 tableView 的 View ?或者除此之外,有没有办法从模态视图实现第二个导航 Controller ?

真正的问题是我想使用从右到左的过渡来呈现带有 tableView 的 View ,这当然不适用于模态视图。

我有这样的代码,SORT OF 提供导航 Controller 使用的从右到左的转换:

NewViewController *newViewController = [[NewViewController alloc] init];
[self presentModalViewController:newViewController animated:NO];

CGSize theSize = CGSizeMake(320, 460);
newViewController.view.frame = CGRectMake(0 + theSize.width, 0 + 20, theSize.width, theSize.height);
[UIView beginAnimations:@"animationID" context:NULL];
[UIView setAnimationDuration:0.5];
newViewController.view.frame = CGRectMake(0, 0 + 20, 320, 460);
[UIView commitAnimations];
[newViewController release];

问题在于 OldViewController(调用 NewViewController 的那个)立即消失,因此 NewViewController 会在空白屏幕上转换,而不是覆盖 OldViewController。

最佳答案

以模态方式呈现 UIViewController 会创建一个全新的导航堆栈。你可以这样做:

//Create the view you want to present modally
UIViewController *modalView = [[UIViewController alloc] init];
//Create a new navigation stack and use it as the new RootViewController for it
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:modalView];
//Present the new navigation stack modally
[self presentModalViewController:nav animated:YES];
//Release
[modalView release];
[nav release];

这是可以做到的,因为 UINavigationController 是 UIViewController 的子类。加载新 View 后,您可以随心所欲地使用它(在其之上推送另一个 View ,例如 Waqas suggeste 等 UIView 动画)。

我希望我正确地回答了你的问题。如果我没有,请告诉我。

关于iphone - 模态视图中的导航 Controller ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5556729/

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