应用程序的结构如下,这是一个使用segue push的故事板应用程序
Navigation Controller (Root)
View Controller (Login)
Tab Bar Controller
Navigation Controller
View Controller (Options)**
**执行注销按钮 [self.navigationController popToRootViewControllerAnimated:NO];
这没有任何作用,在按下注销后尝试进入“登录”视图。
什么是正确的方法?
答案 0 :(得分:0)
调用popToRootViewController时self.navigationController是否有值?
添加:
NSLog(@" self.navCon is %@", self.navigationController);
在你打电话给pop之前...