gpt4 book ai didi

iphone - 单独使用 UINavigationViewController

转载 作者:可可西里 更新时间:2023-11-01 04:42:55 25 4
gpt4 key购买 nike

在我的应用程序中,它基于一个标签栏 View Controller ,每个标签栏项目都有许多 uinavigationviewcontroller,我想在某个时候(在应用程序启动时)通过调用包含 uinavigationcontroller 作为根的 presentModalViewController 来呈现,以便用户可以做一些事情......当他或她完成时,可以点击右上角的完成按钮以关闭模态视图 Controller ,然后返回到基本标签栏 View ......我如何使用界面做到这一点 build 者?

最佳答案

在 XCode 中,创建一个新的 View XIB 文件并在 Interface Builder 中打开它。在这个 xib 文件中,删除 View 并将 UINavigationController 拖到它的位置。

然后,在您的 View Controller 代码中,类似

UINavigationController *controller = [[UINavigationController alloc] initWithNibName:@"ModalViewController" bundle:nil];
[self presentModalViewController:controller animated:YES];
[controller release];

将加载您的 XIB 并呈现它。

希望这对您有所帮助,如有任何其他问题,请随时对此答案发表评论!

小号

关于iphone - 单独使用 UINavigationViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2114429/

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