美文网首页
tabbar重影问题

tabbar重影问题

作者: 湾逗 | 来源:发表于2018-01-20 17:13 被阅读0次

1.未清除原来子控件

-(void)viewWillLayoutSubviews{

    [super viewWillLayoutSubviews];

    for (UIView *child in self.tabBar.subviews) {

        if ([child isKindOfClass:NSClassFromString(@"UITabBarButton")]) {

            [child removeFromSuperview];

        }

    }

}

- (void)viewWillAppear:(BOOL)animated

{

    [super viewWillAppear:animated];

    // 移除之前的4个UITabBarButton

    for (UIView *child in self.tabBar.subviews) {

        if ([child isKindOfClass:[UIControl class]]) { //UITabBarButton

            [child removeFromSuperview];

        }

    }

}

-(void)DeletemoreMore{

    for (UIView *child in self.tabBar.subviews) {

        if ([child isKindOfClass:[UIControl class]]) { //UITabBarButton

            [child removeFromSuperview];

        }

    }

}

2.rootViewController title命名原因,应为self.navigationItem.title = @"***";而非self.title = @"***";

相关文章

网友评论

      本文标题:tabbar重影问题

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