我是iOS编程的初学者,我想实现回到主视图的功能.
我使用这段代码:
-(IBAction)onclickhome:(id)sender { [self.navigationController popViewControllerAnimated:YES]; }
我在主页按钮点击事件中使用了navigationController,但它没有跳转到主屏幕.
解决方法
我不确定我理解你的问题.
你是什么意思
I have used navigationController in home button click event but it is
not jump to home screen
?
如果要弹出到根控制器,可以使用popToRootViewControllerAnimated.
[self.navigationController popToRootViewControllerAnimated:YES];
来自Apple的UINavigationController文档
popToRootViewControllerAnimated: Pops all the view controllers on the stack except the root view controller and updates the display. - (NSArray *)popToRootViewControllerAnimated:(BOOL)animated
如果您已经设置了UINavigationController并且其根控制器被称为A,那么如果您从A导航到B然后从B导航到C,那么您有两种可能性来回到之前的控制器(您可以使用其他控制器但我列出了主控制器)那些):
>使用popViewControllerAnimated从C导航回B.>使用popToRootViewControllerAnimated从C导航回A