内容简介:本文将讲解实现类似爱奇艺iOS客户端泡泡UI的几种实现以及几种实现可能出现的坑。爱奇艺iOS客户端首页底部有5个按钮UITabBar实现,最右边一个是泡泡按钮,点击泡泡按钮将会push到一个带有UITabBar的界面(第一次见到这种设计)。截止本文发表时爱奇艺iOS客户端版本为V9.10.0,已经改了泡泡界面,不再是push到一个带有UITabBar的界面。
本文将讲解实现类似爱奇艺iOS客户端泡泡UI的几种实现以及几种实现可能出现的坑。
爱奇艺iOS客户端首页底部有5个按钮UITabBar实现,最右边一个是泡泡按钮,点击泡泡按钮将会push到一个带有UITabBar的界面(第一次见到这种设计)。
截止本文发表时爱奇艺iOS客户端版本为V9.10.0,已经改了泡泡界面,不再是push到一个带有UITabBar的界面。
前置条件
1、实现UITabBarControllerDelegate
@interface IQIYITabBarController ()<UITabBarControllerDelegate> @end @implementation IQIYITabBarController - (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; }
模态视图的返回
详情见文末的demo
- (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图,如果不会动请刷新)
弊端
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]; }
一定要使用-setNavigationBarHidden:animated:这个方法来显示隐藏导航栏,并且动画效果不要写YES或者NO要用animated,否则将会出现导航栏黑边闪一下或者手势时出现黑边的情况。
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- 同一客户端下使用多个 Git 账号
- 开源邮箱客户端Thunderbird 60.3修复多个高危漏洞
- 监控多个Kubernetes集群
- 管理多个远端仓库
- Git 推送到多个仓库
- 运行多个 npm script
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
"笨办法"学Python
肖 (Zed A.Shaw) / 王巍巍 / 人民邮电出版社 / 2014-11-1 / CNY 49.00
本书是一本Python入门书籍,适合对计算机了解不多,没有学过编程,但对编程感兴趣的读者学习使用。这本书以习题的方式引导读者一步一步学习编程,从简单的打印一直讲到完整项目的实现,让初学者从基础的编程技术入手,最终体验到软件开发的基本过程。 本书结构非常简单,共包括52个习题,其中26个覆盖了输入/输出、变量和函数三个主题,另外26个覆盖了一些比较高级的话题,如条件判断、循环、类和对象、代码测......一起来看看 《"笨办法"学Python》 这本书的介绍吧!