我有一个导航栏顶部的视图(我下载了这个应用程序及其导航控制器应用程序),但如何在底部添加导航栏?
答案 0 :(得分:1)
//
修饰
UINavigationBar *bottomBar=[[UINavigationBar alloc]initWithFrame:CGRectMake(0, 436, 320, 44)];
[self.view setFrame:CGRectMake(0, 0, 320, 460-44)];
[self.view addSubview:bottomBar];
答案 1 :(得分:0)
我很确定UINavigationController实际上支持这个开箱即用。它被称为UIToolbar,我相信如果您查看文档,您将能够找到更多相关信息。
答案 2 :(得分:0)
您可以使用UI工具栏而不是导航栏
UIToolbar *toolbar = [[UIToolbar alloc] initWith:CGRectMake(0, 436, 320, 44)];
[myview addSubview:toobar];