iOS 解决自定义TabBar使用popToRootViewControllerAnimated重叠问题

本文提供两种解决iOS自定义TabBar使用popToRootViewControllerAnimated方法导致重叠问题的方法。一是通过添加观察者并实现removeTabBarBtn方法来移除不需要的按钮;二是通过UINavigationController的代理方法navigationController:willShowViewController:animated:来实现相同目的。
摘要由CSDN通过智能技术生成

解决方法一:

在自定义的NavigationController中添加如下代码:

 (void)viewDidLoad{  
    [super viewDidLoad];  
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(removeTabBarBtn) name:@"removeTabBarBtn" object:nil];  
}  
  
- (void)removeTabBarBtn  
{  
//    NSArray *tSubviews = self.tabBarController.tabBar.subviews;  
//    for (int i = 0; i < tSubviews.count; i++) {  
//        Class parentVCClass = [tSubviews[i] class];  
//        NSString *className = NSStringFromClass(parentVCClass);  
//        ALog(@"%d---%@",i, className);  
//      
//    }  
      
    for (UIView *tabBar in self.tabBarController.tabBar.subviews) {  
        if ([tabBar isKindOfClass:NSClassFromString(@"UITabBarButton")]) {  
            [tabBar removeFromSuperview];  
        }  
    }  
}  
  
  
-(void)dealloc  
{  
    [[NSNotificationCenter defaultCenter]removeObserver:self name:@"removeTabBarBtn" object:nil];  
}  

并且在调用popToRootViewControllerAnimated方法的viewController中发出通知:

[self.navigationController popToRootViewControllerAnimated:NO];  
[[NSNotificationCenter defaultCenter] postNotificationName:@"removeTabBarBtn" object:nil userInfo:nil];  

解决方法二:

(该方法更为简单)苹果强大就强大在这里,他们已经预想到了。

所以方法就是:遵循UINavigationController的代理,用代理方法解决该Bug,代码如下:

设置代理:

- (void)viewDidLoad{  
    [super viewDidLoad];  
    self.delegate = self;  
}  
 

实现代理方法:

 
- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated  
{  
    // 删除系统自带的tabBarButton  
    for (UIView *tabBar in self.tabBarController.tabBar.subviews) {  
        if ([tabBar isKindOfClass:NSClassFromString(@"UITabBarButton")]) {  
            [tabBar removeFromSuperview];  
        }  
    }  
}  

原文链接:iOS自定义TabBar使用popToRootViewControllerAnimated重叠问题解决

转载于:https://www.cnblogs.com/guchunli/p/6709922.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值