我在 UINavigationcontroller 中有一个 UITableViewController,我想在其中添加一个自定义导航栏。如果我在 tableView 类中执行此操作,它会与表格一起滚动,这不是我想要的。如果我在 NavigationController 类中执行此操作,它不会出现。
我在 NavigationController NIB 文件中创建了一个 UINavigatioBar,并将其作为 IBOutlet 连接到我的 Navigationcontroller.h。在我的 NavigationController.m 我有:
productsNavigationBar = [[UINavigationBar alloc] initWithFrame:CGRectMake(0, 0, 1048, 88)];
[productsNavigationBar setBarStyle:UIBarStyleBlackTranslucent];
[self.view addSubview:productsNavigationBar];
谁知道该怎么做才能让我的酒吧出现?