美文网首页
自定义TabBar,解决pop双tabbar的问题

自定义TabBar,解决pop双tabbar的问题

作者: 沃伦盖茨 | 来源:发表于2018-02-08 14:58 被阅读10次

在自定义的TabBartViewController中注册通知

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(moreMore) name:@"moreMore" object:nil];

- (void)moreMore

{

    //注意,这里看到好多有说移除TabBarButton的,亲测后发现不行,故而将整个tabBar移除了,OK了

    [self.tabBar removeFromSuperview];

}

在pop的时候发送通知

相关文章

网友评论

      本文标题:自定义TabBar,解决pop双tabbar的问题

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