UINavigationController 大小

发布于 2024-11-08 04:17:49 字数 129 浏览 0 评论 0原文

是否可以为 UINavigationController 视图设置自定义大小? 我需要将层次结构列表嵌入到视图中,并且我不希望 UINavigationController 全屏显示。

其他解决方案?

提前致谢。

Is it possible to set a custom size for the UINavigationController view?
I need to embed a hierarical list into a view and I don't want the UINavigationController to be fullscreen.

Other solutions?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何以心动 2024-11-15 04:17:49

您可以创建一个 UINavigationController,然后将其视图定位为其他视图的子视图。例如:

UINavigationController * nav = [[UINavigationController alloc] initWithRootViewController:root];

UIView * somethingElse = [self getSomethingElse];
[somethingElse addSubView:nav.view];
[nav setBounds:theBoundsWeWant];
[nav setFrame:theFrameWeWant];

boundsframe 属性将确定导航在屏幕上显示的位置。

You can create a UINavigationController and then position its view as a subview of something else. For instance:

UINavigationController * nav = [[UINavigationController alloc] initWithRootViewController:root];

UIView * somethingElse = [self getSomethingElse];
[somethingElse addSubView:nav.view];
[nav setBounds:theBoundsWeWant];
[nav setFrame:theFrameWeWant];

The bounds and the frame properties will determine where the nav is shown on screen.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文