iOS|iOS 多个UITabBar的技术实现
一、源起
小编最近在使用App的时候,经常遇到UITabBarController为根控制器跳转到另一个UITabBarController.这种作为可以尽最大可能性的细分模块。经过几次实验和浏览相关App。最终决定了2种方案。
二、实现关键点
1、实现UITabBarControllerDelegate
@interface YITabBarController ()
@end
@implementation YITabBarController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
self.delegate = self;
}
@end
2、实现 -tabBarController:shouldSelectViewController:方法
- (BOOL)tabBarController:(UITabBarController *)tabBarController shouldSelectViewController:(UIViewController *)viewController{ }
三、实现方案
第一种实现 使用模态视图 使用模态视图并修改模态视图的弹出动画为push的形式
- (BOOL)tabBarController:(UITabBarController *)tabBarController shouldSelectViewController:(UIViewController *)viewController {
//4是泡泡页面
if ([viewController isEqual:[tabBarController.viewControllers objectAtIndex:4]]) {
SecondTabBarController * vc = [[SecondTabBarController alloc] init];
CATransition * ansition = [CATransition animation];
[ansition setDuration:0.25f];
[ansition setType:kCATransitionMoveIn];
[ansition setSubtype:kCATransitionFromRight];
[[UIApplication sharedApplication].keyWindow.layer addAnimation:ansition forKey:nil];
[self presentViewController:vc animated:NO completion:nil];
return NO;
}
return YES;
}
模态视图的返回
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
self.view.backgroundColor = [UIColor groupTableViewBackgroundColor];
UIBarButtonItem * leftBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"返回" style:(UIBarButtonItemStyleDone) target:self action:@selector(back)];
self.navigationItem.leftBarButtonItem = leftBarButtonItem;
}
- (void)back {
CATransition * ansition = [CATransition animation];
[ansition setDuration:0.25f];
[ansition setType:kCATransitionMoveIn];
[ansition setSubtype:kCATransitionFromLeft];
[[UIApplication sharedApplication].keyWindow.layer addAnimation:ansition forKey:nil];
[self dismissViewControllerAnimated:NO completion:nil];
}
效果如下图(gif图,如果不会动请刷新)
文章图片
iyiqi_gif1.gif
弊端
gif图可能看的不是很清楚。
弊端就是在push 或者 pop动画执行时会看到黑影闪过,如果要求不高的可以使用这个。
为了解决这个问题,我们引出第二种实现方案.
第二种实现 使用UINavigationController push的形式 导航栏push的方式
还是先实现前置条件里的代码
接着实现以下代码
- (BOOL)tabBarController:(UITabBarController *)tabBarController shouldSelectViewController:(UIViewController *)viewController {
//4是泡泡页面
if ([viewController isEqual:[tabBarController.viewControllers objectAtIndex:4]]) {
SecondTabBarController * vc = [[SecondTabBarController alloc] init];
vc.hidesBottomBarWhenPushed = YES;
UINavigationController * nav = tabBarController.viewControllers[tabBarController.selectedIndex];
[nav pushViewController:vc animated:YES];
return NO;
}
return YES;
}
注意事项
要在第二个TabBar里隐藏掉最外层的导航栏,否则将可能出现2个导航栏的效果
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
[self.navigationController setNavigationBarHidden:YES animated:animated];
}
- (void)viewWillDisappear:(BOOL)animated {
[super viewWillDisappear:animated];
[self.navigationController setNavigationBarHidden:NO animated:animated];
}
【iOS|iOS 多个UITabBar的技术实现】一定要使用 -setNavigationBarHidden:animated: 这个方法来显示隐藏导航栏,并且动画效果不要写YES或者NO要用animated,否则将会出现导航栏黑边闪一下或者手势时出现黑边的情况。
效果如下图(gif图,如果不会动请刷新)
文章图片
iyiqi_gif2.gif
推荐阅读
- 2020-04-07vue中Axios的封装和API接口的管理
- iOS中的Block
- 记录iOS生成分享图片的一些问题,根据UIView生成固定尺寸的分享图片
- Android|Android install 多个设备时指定设备
- 2019-08-29|2019-08-29 iOS13适配那点事
- Hacking|Hacking with iOS: SwiftUI Edition - SnowSeeker 项目(一)
- iOS面试题--基础
- 接口|axios接口报错-参数类型错误解决
- iOS|iOS 笔记之_时间戳 + DES 加密
- iOS,打Framework静态库