UINavigationController push 到TabBarController,没有任何问题,但是 pop 回去用
[self.navigationController popViewControllerAnimated:YES]; 是无效的,
原因:TabBarController 上添加了子控制器 UINavigationController,UINavigationController根控制器
上添加了一个UIViewContrller
所以用:[self.tabBarController.navigationController popViewControllerAnimated:YES];
就解决问题了。
网友评论