1. 在项目中经常遇到隐藏tabBar,实力很多种方法,可以解决不同情况下问题
  2. 使用中涉及到view的层次关系,下面的使用方法 1、2不做说明;在使用3、4方法时注意要在tabBar所在的rootView中调用实现(必要时使用委托,已达到所需要的目的)
  3. 举例:A(rootView 是tabBarCtroller);B(A的subView);C(B通过pushViewController)
  4. 如果想要C出现的时候将tabView隐藏(且C是全屏的,能展开到tabbar存在的位置),B显示的时候babView在显示出来
  5. 此情况明显1、2方法不能实现了,要用3、4的方法来实现;
  6. 实现方式:B在pushViewController的时候调用其委托函数(即B消失C出现时tabbar隐藏)
  7. if([delegaterespondsToSelector:@selector(hidenTabbar:)])
  8. {
  9. [delegatehidenTabbar:YES];
  10. }
  11. 在A中实现B的委托代码就是3、4;
  12. 同样在B的viewWillAppear中也调用其委托:NO;(B显示时tabbar出现)
  13. -(void)viewWillAppear:(BOOL)animated
  14. {
  15. if([delegate respondsToSelector:@selector(hidenTabbar:)])
  16. {
  17. [delegatehidenTabbar:NO];
  18. }
  19. }
  20. 1://隐藏tabBar
  21. WebViewController *webVc = [[WebViewController alloc] init];
  22. webVc.hidesBottomBarWhenPushed = YES;
  23. [self.navigationController pushViewController:webVc animated:YES];
  24. webVc.hidesBottomBarWhenPushed = NO;
  25. [webVc release];
  26. 2.系统方法    self.hidesBottomBarWhenPushed = YES;
  27. 3:自定义tabBar时候,由tabBarController管理的
  28. //隐藏tabBar
  29. - (void) hideTabBar:(BOOL) hidden{
  30. [UIView beginAnimations:nil context:NULL];
  31. [UIView setAnimationDuration:0];
  32. for(UIView *view in self.tabBarController.view.subviews)
  33. {
  34. if([view isKindOfClass:[UITabBar class]])
  35. {
  36. if (hidden) {
  37. [view setFrame:CGRectMake(view.frame.origin.x, iphone5?568:480, view.frame.size.width, view.frame.size.height)];
  38. } else {
  39. [view setFrame:CGRectMake(view.frame.origin.x, iphone5?568-49:480-49, view.frame.size.width, view.frame.size.height)];
  40. }
  41. }
  42. else
  43. {
  44. if (hidden) {
  45. [view setFrame:CGRectMake(view.frame.origin.x, view.frame.origin.y, view.frame.size.width, iphone5?568:480)];
  46. } else {
  47. [view setFrame:CGRectMake(view.frame.origin.x, view.frame.origin.y, view.frame.size.width,  iphone5?568-49:480-49)];
  48. }
  49. }
  50. }
  51. [UIView commitAnimations];
  52. }
  53. //调整子视图
  54. for (UIView *subView in self.view.subviews) {
  55. if ([subView isKindOfClass:NSClassFromString(@"UITransitionView")]) {
  56. //调整子视图的高度,UITransitionView视图为UINavitaionController的根视图
  57. //            subView.frame = CGRectMake(subView.frame.origin.x, subView.frame.origin.y, subView.frame.size.width, 480);
  58. CGRect frame = subView.frame;
  59. frame.size.height = 480;
  60. subView.frame = frame;
  61. }
  62. }
  63. 4:类似方法3
  64. - (void)makeTabBarHidden:(BOOL)hide
  65. {
  66. if ( [self.tabBarController.view.subviews count] < 2 )
  67. {
  68. return;
  69. }
  70. UIView *contentView;
  71. if ( [[self.tabBarController.view.subviews objectAtIndex:0] isKindOfClass:[UITabBar class]] )
  72. {
  73. contentView = [self.tabBarController.view.subviews objectAtIndex:1];
  74. }
  75. else
  76. {
  77. contentView = [self.tabBarController.view.subviews objectAtIndex:0];
  78. }
  79. //    [UIView beginAnimations:@"TabbarHide" context:nil];
  80. if ( hide )
  81. {
  82. contentView.frame = self.tabBarController.view.bounds;
  83. }
  84. else
  85. {
  86. contentView.frame = CGRectMake(self.tabBarController.view.bounds.origin.x,
  87. self.tabBarController.view.bounds.origin.y,
  88. self.tabBarController.view.bounds.size.width,
  89. self.tabBarController.view.bounds.size.height - self.tabBarController.tabBar.frame.size.height);
  90. }
  91. self.tabBarController.tabBar.hidden = hide;
  92. }

隐藏TabBar的一些方法小结(适用与各种情况)的更多相关文章

  1. iOS 有TabBar的VC界面push后隐藏TabBar的方法

    当一个UITabbarController管理多个UINavigationController的时候, 我们要从这每一个UINavigationController中push一个ViewControl ...

  2. iOS隐藏tabBar的方法

    两种方法用来隐藏tabBar 1.在本页面隐藏 #pragma mark - 隐藏tabBar - (void)viewWillAppear:(BOOL)animated{ self.tabBarCo ...

  3. iOS跳转洁面时隐藏tabBar的方法

    //1.设置self.tabBarController.tabBar.hidden=YES;       self.tabBarController.tabBar.hidden=YES;   //2. ...

  4. IOS 如何隐藏tabbar

    系统自带的UITabBarController有时候到不到要求,需要自定义样式. 有一种方法就是在TabBar上面在放一层自己的,正好把原来的遮住. 那么,从Tab进入子的Controller想要隐藏 ...

  5. iOS 隐藏Tabbar

    两种方法用来隐藏tabBar 1.在本页面隐藏 #pragma mark - 隐藏tabBar - (void)viewWillAppear:(BOOL)animated{  self.tabBarC ...

  6. 隐藏TabBar是个累人的活

    最近进行跳转界面隐藏tabbar的时候遇到了一些坑,现在把它记录下来,如果有需要的朋友可以参考一下. 大家一般使用tabbar的时候,隐藏有两种方法. 一种是设置当前所处界面的隐藏属性 self.ta ...

  7. css清除浮动方法小结

    清除浮动其实主要解决的就是高度塌陷问题,具体在此不再赘述~~~那些年我们一起清除过的浮动(大佬博客,写的挺不错) 方法小结:1. 1)添加额外标签 这是在学校老师就告诉我们的 一种方法,通过在浮动元素 ...

  8. 多层界面之间显示与隐藏tabBar

    IOS中多层界面之间显示与隐藏tabBar? 在做项目的时候,遇到了一个难题,使用hidesBottomWhenPushed=YES属性设置,可以让本级界面及其以后界面都隐藏,但是根据项目 需求,在第 ...

  9. Android中点击隐藏软键盘最佳方法——Android开发之路4

    Android中点击隐藏软键盘最佳方法 实现功能:点击EditText,软键盘出现并且不会隐藏,点击或者触摸EditText以外的其他任何区域,软键盘被隐藏: 1.重写dispatchTouchEve ...

随机推荐

  1. Ignatius and the Princess IV

    Ignatius and the Princess IV Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32767 K ( ...

  2. SLua 中使用 Lua 5.3 的编译工程

    2016-03-05 更新: 之前编译的库,在 Android 下 Lua_Number 和 Lua_Integer 被编译为了32位,导致从 C# 到 Lua 过程中有64位到32位整型转换会出现溢 ...

  3. oracle查看表锁及解锁

    --kill session语句 1 alter system kill SESSION '2171,60490'; --以下几个为相关表 1 2 3 4 5 6 7 SELECT * FROM v$ ...

  4. Tomcat内存不足的解决办法

    Tomcat增加内存 -Xms512m -Xmx512m -XX:PermSize=128M -XX:MaxPermSize=512m -DCOM.HUATENG.PRODUCTION_MODE=fa ...

  5. 宁波Uber优步司机奖励政策(2月1日~2月7日)

    滴快车单单2.5倍,注册地址:http://www.udache.com/ 如何注册Uber司机(全国版最新最详细注册流程)/月入2万/不用抢单:http://www.cnblogs.com/mfry ...

  6. AppiumLibrary

    Strategy Example Description identifier Click Element|identifier=my_element Matches by @id or @name ...

  7. PAT 1012. The Best Rank

    To evaluate the performance of our first year CS majored students, we consider their grades of three ...

  8. Test Bench基础知识笔记

    学的内容多了,好多指令和用法都容易遗忘和混淆,出现这种情况就需要勤记笔记,忘记了多翻阅几次,基本上就能完全记住了. [`timescale 1ns/1ps]前一个1ns表示时延时间,后一个1ps表示时 ...

  9. 使用solrj操作solr索引库,solr是lucene服务器

    客户端开发 Solrj 客户端开发 Solrj Solr是搭建好的lucene服务器 当然不可能完全满足一般的业务需求 可能 要针对各种的架构和业务调整 这里就需要用到Solrj了 Solrj是Sol ...

  10. HDU ACM 1392 Surround the Trees-&gt;凸包

    分析:直接求出凸包.再算边长就可以. 另外仅仅有一个点时为0.00单独处理,两个点直接为距离也单独处理. #include<iostream> #include<cmath> ...