美文网首页
popToRootViewControllerAnimated导

popToRootViewControllerAnimated导

作者: MaZengyi | 来源:发表于2017-01-19 23:48 被阅读302次

    在 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/ttkwbttx.html