博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
设置滑动TabBar的显示和隐藏
阅读量:4993 次
发布时间:2019-06-12

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

代码如下:

//设置滑动的判定范围- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset{    // 上滑动隐藏TabBar,上滑值越来越小,下滑动越来越大    if (self.historyY+20
y) { [self setTabBarHidden:YES]; } else if(self.historyY-20>targetContentOffset->y) { [self setTabBarHidden:NO]; } self.historyY=targetContentOffset->y;} //隐藏显示tabbar- (void)setTabBarHidden:(BOOL)hidden{ UIView *tab = self.tabBarController.view; CGRect tabRect=self.tabBarController.tabBar.frame; if ([tab.subviews count] < 2) { return; } UIView *view; if ([[tab.subviews objectAtIndex:0] isKindOfClass:[UITabBar class]]) { view = [tab.subviews objectAtIndex:1]; } else { view = [tab.subviews objectAtIndex:0]; } if (hidden) { view.frame = tab.bounds; tabRect.origin.y=[[UIScreen mainScreen]bounds].size.height+self.tabBarController.tabBar.frame.size.height; } else { view.frame = CGRectMake(tab.bounds.origin.x, tab.bounds.origin.y, tab.bounds.size.width, tab.bounds.size.height); tabRect.origin.y=[[UIScreen mainScreen] bounds].size.height-self.tabBarController.tabBar.frame.size.height; } [UIView animateWithDuration:0.5f animations:^{ self.tabBarController.tabBar.frame=tabRect; }completion:^(BOOL finished) { }];}

 

转载于:https://www.cnblogs.com/pengsi/p/7903066.html

你可能感兴趣的文章
[beta cycle]daily scrum10_2.25
查看>>
【转载】和 Thrift 的一场美丽邂逅
查看>>
CM_RESOURCE_LIST structure 分类: wind...
查看>>
css单位pr,em,与颜色
查看>>
Angularjs笔记(三)
查看>>
@ControllerAdvice 标签为起作用
查看>>
lambda
查看>>
ubuntu16.04下使用python3开发时,安装pip3与scrapy,升级pip3
查看>>
python网络编程基础
查看>>
selenium+maven+testng+IDEA+git自动化测试环境搭建(二)
查看>>
Mini2440 UART原理及使用
查看>>
Linux学习第六篇之文件处理命令ln(链接命令)
查看>>
thinkphp5 tp5 七牛云 上传图片
查看>>
VM下Linux网卡丢失(pcnet32 device eth0 does not seem to be ...)解决方案
查看>>
第一阶段意见汇总以及改进
查看>>
再说virtual
查看>>
随笔:技术流可以这样写博客
查看>>
[优化]JavaScript 格式化带有占位符字符串
查看>>
打JAR包
查看>>
大图轮播
查看>>