隐藏TabBar的一些方法小结(适用与各种情况)
- 在项目中经常遇到隐藏tabBar,实力很多种方法,可以解决不同情况下问题
- 使用中涉及到view的层次关系,下面的使用方法 1、2不做说明;在使用3、4方法时注意要在tabBar所在的rootView中调用实现(必要时使用委托,已达到所需要的目的)
- 举例:A(rootView 是tabBarCtroller);B(A的subView);C(B通过pushViewController)
- 如果想要C出现的时候将tabView隐藏(且C是全屏的,能展开到tabbar存在的位置),B显示的时候babView在显示出来
- 此情况明显1、2方法不能实现了,要用3、4的方法来实现;
- 实现方式:B在pushViewController的时候调用其委托函数(即B消失C出现时tabbar隐藏)
- if([delegaterespondsToSelector:@selector(hidenTabbar:)])
- {
- [delegatehidenTabbar:YES];
- }
- 在A中实现B的委托代码就是3、4;
- 同样在B的viewWillAppear中也调用其委托:NO;(B显示时tabbar出现)
- -(void)viewWillAppear:(BOOL)animated
- {
- if([delegate respondsToSelector:@selector(hidenTabbar:)])
- {
- [delegatehidenTabbar:NO];
- }
- }
- 1://隐藏tabBar
- WebViewController *webVc = [[WebViewController alloc] init];
- webVc.hidesBottomBarWhenPushed = YES;
- [self.navigationController pushViewController:webVc animated:YES];
- webVc.hidesBottomBarWhenPushed = NO;
- [webVc release];
- 2.系统方法 self.hidesBottomBarWhenPushed = YES;
- 3:自定义tabBar时候,由tabBarController管理的
- //隐藏tabBar
- - (void) hideTabBar:(BOOL) hidden{
- [UIView beginAnimations:nil context:NULL];
- [UIView setAnimationDuration:0];
- for(UIView *view in self.tabBarController.view.subviews)
- {
- if([view isKindOfClass:[UITabBar class]])
- {
- if (hidden) {
- [view setFrame:CGRectMake(view.frame.origin.x, iphone5?568:480, view.frame.size.width, view.frame.size.height)];
- } else {
- [view setFrame:CGRectMake(view.frame.origin.x, iphone5?568-49:480-49, view.frame.size.width, view.frame.size.height)];
- }
- }
- else
- {
- if (hidden) {
- [view setFrame:CGRectMake(view.frame.origin.x, view.frame.origin.y, view.frame.size.width, iphone5?568:480)];
- } else {
- [view setFrame:CGRectMake(view.frame.origin.x, view.frame.origin.y, view.frame.size.width, iphone5?568-49:480-49)];
- }
- }
- }
- [UIView commitAnimations];
- }
- //调整子视图
- for (UIView *subView in self.view.subviews) {
- if ([subView isKindOfClass:NSClassFromString(@"UITransitionView")]) {
- //调整子视图的高度,UITransitionView视图为UINavitaionController的根视图
- // subView.frame = CGRectMake(subView.frame.origin.x, subView.frame.origin.y, subView.frame.size.width, 480);
- CGRect frame = subView.frame;
- frame.size.height = 480;
- subView.frame = frame;
- }
- }
- 4:类似方法3
- - (void)makeTabBarHidden:(BOOL)hide
- {
- if ( [self.tabBarController.view.subviews count] < 2 )
- {
- return;
- }
- UIView *contentView;
- if ( [[self.tabBarController.view.subviews objectAtIndex:0] isKindOfClass:[UITabBar class]] )
- {
- contentView = [self.tabBarController.view.subviews objectAtIndex:1];
- }
- else
- {
- contentView = [self.tabBarController.view.subviews objectAtIndex:0];
- }
- // [UIView beginAnimations:@"TabbarHide" context:nil];
- if ( hide )
- {
- contentView.frame = self.tabBarController.view.bounds;
- }
- else
- {
- contentView.frame = CGRectMake(self.tabBarController.view.bounds.origin.x,
- self.tabBarController.view.bounds.origin.y,
- self.tabBarController.view.bounds.size.width,
- self.tabBarController.view.bounds.size.height - self.tabBarController.tabBar.frame.size.height);
- }
- self.tabBarController.tabBar.hidden = hide;
- }
隐藏TabBar的一些方法小结(适用与各种情况)的更多相关文章
- iOS 有TabBar的VC界面push后隐藏TabBar的方法
当一个UITabbarController管理多个UINavigationController的时候, 我们要从这每一个UINavigationController中push一个ViewControl ...
- iOS隐藏tabBar的方法
两种方法用来隐藏tabBar 1.在本页面隐藏 #pragma mark - 隐藏tabBar - (void)viewWillAppear:(BOOL)animated{ self.tabBarCo ...
- iOS跳转洁面时隐藏tabBar的方法
//1.设置self.tabBarController.tabBar.hidden=YES; self.tabBarController.tabBar.hidden=YES; //2. ...
- IOS 如何隐藏tabbar
系统自带的UITabBarController有时候到不到要求,需要自定义样式. 有一种方法就是在TabBar上面在放一层自己的,正好把原来的遮住. 那么,从Tab进入子的Controller想要隐藏 ...
- iOS 隐藏Tabbar
两种方法用来隐藏tabBar 1.在本页面隐藏 #pragma mark - 隐藏tabBar - (void)viewWillAppear:(BOOL)animated{ self.tabBarC ...
- 隐藏TabBar是个累人的活
最近进行跳转界面隐藏tabbar的时候遇到了一些坑,现在把它记录下来,如果有需要的朋友可以参考一下. 大家一般使用tabbar的时候,隐藏有两种方法. 一种是设置当前所处界面的隐藏属性 self.ta ...
- css清除浮动方法小结
清除浮动其实主要解决的就是高度塌陷问题,具体在此不再赘述~~~那些年我们一起清除过的浮动(大佬博客,写的挺不错) 方法小结:1. 1)添加额外标签 这是在学校老师就告诉我们的 一种方法,通过在浮动元素 ...
- 多层界面之间显示与隐藏tabBar
IOS中多层界面之间显示与隐藏tabBar? 在做项目的时候,遇到了一个难题,使用hidesBottomWhenPushed=YES属性设置,可以让本级界面及其以后界面都隐藏,但是根据项目 需求,在第 ...
- Android中点击隐藏软键盘最佳方法——Android开发之路4
Android中点击隐藏软键盘最佳方法 实现功能:点击EditText,软键盘出现并且不会隐藏,点击或者触摸EditText以外的其他任何区域,软键盘被隐藏: 1.重写dispatchTouchEve ...
随机推荐
- Ignatius and the Princess IV
Ignatius and the Princess IV Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32767 K ( ...
- SLua 中使用 Lua 5.3 的编译工程
2016-03-05 更新: 之前编译的库,在 Android 下 Lua_Number 和 Lua_Integer 被编译为了32位,导致从 C# 到 Lua 过程中有64位到32位整型转换会出现溢 ...
- oracle查看表锁及解锁
--kill session语句 1 alter system kill SESSION '2171,60490'; --以下几个为相关表 1 2 3 4 5 6 7 SELECT * FROM v$ ...
- Tomcat内存不足的解决办法
Tomcat增加内存 -Xms512m -Xmx512m -XX:PermSize=128M -XX:MaxPermSize=512m -DCOM.HUATENG.PRODUCTION_MODE=fa ...
- 宁波Uber优步司机奖励政策(2月1日~2月7日)
滴快车单单2.5倍,注册地址:http://www.udache.com/ 如何注册Uber司机(全国版最新最详细注册流程)/月入2万/不用抢单:http://www.cnblogs.com/mfry ...
- AppiumLibrary
Strategy Example Description identifier Click Element|identifier=my_element Matches by @id or @name ...
- PAT 1012. The Best Rank
To evaluate the performance of our first year CS majored students, we consider their grades of three ...
- Test Bench基础知识笔记
学的内容多了,好多指令和用法都容易遗忘和混淆,出现这种情况就需要勤记笔记,忘记了多翻阅几次,基本上就能完全记住了. [`timescale 1ns/1ps]前一个1ns表示时延时间,后一个1ps表示时 ...
- 使用solrj操作solr索引库,solr是lucene服务器
客户端开发 Solrj 客户端开发 Solrj Solr是搭建好的lucene服务器 当然不可能完全满足一般的业务需求 可能 要针对各种的架构和业务调整 这里就需要用到Solrj了 Solrj是Sol ...
- HDU ACM 1392 Surround the Trees->凸包
分析:直接求出凸包.再算边长就可以. 另外仅仅有一个点时为0.00单独处理,两个点直接为距离也单独处理. #include<iostream> #include<cmath> ...