博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
present一个视图时,隐藏底部的tabbar
阅读量:6195 次
发布时间:2019-06-21

本文共 698 字,大约阅读时间需要 2 分钟。

先说一下遇到的问题,再present一个视图时,隐藏底部的tabbar,回来的时候tabbar消失了

如果是push过去的话,这样就可以了。

// 进入某个界面NextViewController *nextVC = [[TypeSupplierViewController alloc] init];// 根据点击种类不同,设立种类属性nextVC.hidesBottomBarWhenPushed=YES;// 进入后隐藏tabbar[self.navigationController pushViewController:nextVC animated:YES];self.hidesBottomBarWhenPushed = NO;// 退出时显示tabbar复制代码

但是present状态下就不好使了,得这样

AppDelegate *appdelegate=(AppDelegate*)[[UIApplication sharedApplication] delegate];appdelegate.window.rootViewController.definesPresentationContext = YES;[appdelegate.window.rootViewController presentViewController:presentedVC  animated:YES completion:nil];这样的话回来的时候,tabbar就不会消失了复制代码

转载于:https://juejin.im/post/5a311bbe6fb9a045076fab30

你可能感兴趣的文章
阿里云区块链共创会:BaaS正式商业化 广邀合作伙伴共建生态
查看>>
(六)java springboot b2b2c shop 多用户商城系统源码-分布式配置中心(Spring Cloud Config)...
查看>>
docker公开课记录
查看>>
mysql排错
查看>>
闪回 Flashback
查看>>
路由器启动过程分析
查看>>
nat、路由聚合、单臂路由实例分析
查看>>
思科 华为 路由重发布
查看>>
关于Selenium自学中遇到的问题
查看>>
Vmware虚拟机
查看>>
我的友情链接
查看>>
路由过滤与策略路由的设计
查看>>
Tomcat下Solr安装配置
查看>>
Cisco 交换机恢复母盘
查看>>
Linux的系统调用
查看>>
Oracle中ORA-01653解决方法
查看>>
企业监控利器nagios应用终结篇
查看>>
MySQL源码:MYSQL存储过程/函数的分析原理及缓存机制
查看>>
统计学习方法概论---标注问题
查看>>
开源中国和Cloud Foundry-红薯
查看>>