美文网首页
popToRootViewControllerAnimated

popToRootViewControllerAnimated

作者: 你买票吗 | 来源:发表于2019-11-11 13:02 被阅读0次

在 iOS 6 以上使用UINavigationController使用popToRootViewControllerAnimated并且需要将 tab 切换到某个 index 的时候,如果这么用

[self.navigationController popToRootViewControllerAnimated:YES];
[self.tabBarController setSelectedIndex:2];
会导致 tabbar 被 hidden ,结果是出现 tabbar 部分出现一片白色。
解决方案是将行代码的顺序对调也就是

[self.tabBarController setSelectedIndex:2];
[self.navigationController popToRootViewControllerAnimated:YES];
先设置 index ,在来 popToRoot 这样就可以避免这个问题啦

相关文章

网友评论

      本文标题:popToRootViewControllerAnimated

      本文链接:https://www.haomeiwen.com/subject/ulhtictx.html