如何以编程方式在视图底部添加导航栏?

发布于 2024-11-23 18:10:42 字数 56 浏览 1 评论 0原文

我有一个顶部有导航栏的视图(我下载了这个应用程序及其导航控制器应用程序),但如何在底部添加导航栏?

I have a view with a nav bar on top (I downloaded this app and its a nav controller app) but how to add a nav bar on bottom?

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

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

发布评论

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

评论(3

奶茶白久 2024-11-30 18:10:42

//

修改的

UINavigationBar *bottomBar=[[UINavigationBar alloc]initWithFrame:CGRectMake(0, 436, 320, 44)];

[self.view setFrame:CGRectMake(0, 0, 320, 460-44)];

[self.view addSubview:bottomBar];

//

modified

UINavigationBar *bottomBar=[[UINavigationBar alloc]initWithFrame:CGRectMake(0, 436, 320, 44)];

[self.view setFrame:CGRectMake(0, 0, 320, 460-44)];

[self.view addSubview:bottomBar];
烈酒灼喉 2024-11-30 18:10:42

我非常确定 UINavigationController 实际上支持开箱即用。我相信它被称为 UIToolbar,如果您查看文档,您将能够找到更多相关内容。

I am pretty sure that the UINavigationController actually supports this out of the box. It's called a UIToolbar, I believe and if you look in the documentation, you'll be able to find more on that.

如歌彻婉言 2024-11-30 18:10:42

您可以使用 UItoolbar 而不是导航栏

     UIToolbar *toolbar = [[UIToolbar alloc] initWith:CGRectMake(0, 436, 320, 44)];

    [myview addSubview:toobar];

You can able to use the UItoolbar instead of navigation bar

     UIToolbar *toolbar = [[UIToolbar alloc] initWith:CGRectMake(0, 436, 320, 44)];

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