我想在我的导航控制器中创建一个可以触发推送segue的按钮,但我不想要导航栏,我怎么能这样做?
答案 0 :(得分:1)
这些链接可能会有所帮助
Creating manual segue correctly through storyboard and xcode
How to pragmatically segue from one view to another with button press from storyboard iOS
答案 1 :(得分:1)
我将假设您知道如何创建推送导航,问题是如何删除导航栏(如果我错了,请告诉我,我会编辑我的答案)。< / p>
在第二个视图控制器中添加以下代码:
- (void)viewDidLoad
{
[super viewDidLoad];
self.navigationController.navigationBarHidden = YES;
}