扩展UITabBarController实现循环滑动效果
//在TabBar上加手势
-(void)setOpenGestury
{
//判断tabbar上的手势为空就创建
if ([self.view.gestureRecognizers count] == 0)
{
//加左右滑手势
UISwipeGestureRecognizer* recognizer = nil;
recognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:selfaction:@selector(selectNextPage:)];
[recognizer setDirection:(UISwipeGestureRecognizerDirectionLeft)];
[self.view addGestureRecognizer:recognizer];
[recognizer release];
recognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:selfaction:@selector(selectNextPage:)];
[recognizer setDirection:(UISwipeGestureRecognizerDirectionRight)];
[self.view addGestureRecognizer:recognizer];
[recognizer release];
}
}
//手势触发
-(void)selectNextPage:(UISwipeGestureRecognizer*)recognizer
{
UIViewController* curViewC = self.selectedViewController;
if ([curViewC isKindOfClass:[UINavigationController class]])
{
int subCount = [((UINavigationController*)curViewC).viewControllers count];
if (subCount > 1)
{
//pop
if (recognizer.direction==UISwipeGestureRecognizerDirectionRight)
{
[((UINavigationController*)curViewC) popViewControllerAnimated:YES];
}
return;
}
}
NSArray* ary = self.viewControllers;
if (recognizer.direction==UISwipeGestureRecognizerDirectionLeft)
{
for (int iIndex = 1 ;iIndex < ary.count ;iIndex++)
{
int nextIndex = (self.selectedIndex + iIndex)%ary.count;
UIViewController* c = [ary objectAtIndex:nextIndex];
BOOL couldClick = YES;
if([self.delegaterespondsToSelector:@selector(tabBarController:shouldSelectViewController:)])
{
couldClick = [self.delegate tabBarController:self shouldSelectViewController:c];
}
if (!couldClick)
{
continue;
}
else
{
[self achieveAnimation:self.selectedIndex toIndex:nextIndexrecognizerDirection:UISwipeGestureRecognizerDirectionLeft];
self.selectedIndex = nextIndex;
break;
}
}
}
else if(recognizer.direction == UISwipeGestureRecognizerDirectionRight)
{
for (int searchCount = 1; searchCount < ary.count; searchCount++)
{
int nextIndex = (self.selectedIndex - searchCount + ary.count)%ary.count;
UIViewController* c = [ary objectAtIndex:nextIndex];
BOOL couldClick = YES;
if([self.delegaterespondsToSelector:@selector(tabBarController:shouldSelectViewController:)])
{
couldClick = [self.delegate tabBarController:self shouldSelectViewController:c];
}
if (!couldClick)
{
continue;
}
else
{
[self achieveAnimation:self.selectedIndex toIndex:nextIndexrecognizerDirection:UISwipeGestureRecognizerDirectionRight];
self.selectedIndex = nextIndex;
break;
}
}
}
}
//截图方法,图片用来做动画
-(UIImage*)imageByCropping:(UIView*)imageToCrop toRect:(CGRect)rect
{
CGFloat scale = [[UIScreen mainScreen] scale];
CGSize pageSize = CGSizeMake(scale*rect.size.width, scale*rect.size.height) ;
UIGraphicsBeginImageContext(pageSize);
CGContextScaleCTM(UIGraphicsGetCurrentContext(), scale, scale);
CGContextRef resizedContext =UIGraphicsGetCurrentContext();
CGContextTranslateCTM(resizedContext,-1*rect.origin.x,-1*rect.origin.y);
[imageToCrop.layer renderInContext:resizedContext];
UIImage*imageOriginBackground =UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
imageOriginBackground = [UIImage imageWithCGImage:imageOriginBackground.CGImage scale:scaleorientation:UIImageOrientationUp];
return imageOriginBackground;
}
//实现动画效果
-(void)achieveAnimation:(int)originIndex toIndex:(int)toIndex recognizerDirection:(UISwipeGestureRecognizerDirection)direction
{
if (originIndex < 0 || originIndex >= self.viewControllers.count)
{
EZGAssert(0);
return;
}
if (toIndex < 0 || toIndex >= self.viewControllers.count)
{
EZGAssert(0);
return;
}
UIViewController* v1 = [self.viewControllers objectAtIndex:originIndex];
UIViewController* v2 = [self.viewControllers objectAtIndex:toIndex];
UIImage* image1 = [self imageByCropping:v1.view toRect:v1.view.bounds];
UIImage* image2 = [self imageByCropping:v2.view toRect:v1.view.bounds];
if (image1 == nil || image2 == nil)
{
EZGAssert(0);
return;
}
UIImageView* imageview1 = [[UIImageView alloc] initWithImage:image1];
UIImageView* imageview2 = [[UIImageView alloc] initWithImage:image2];
UIWindow* window = [UIApplication sharedApplication].keyWindow;
CGRect rectV1 = [v1.view convertRect:v1.view.bounds toView:window];
// CGRect rectV2 = [v2.view convertRect:v1.view.bounds toView:window];
//set possion
imageview1.frame = rectV1;
imageview2.frame = rectV1;
[window addSubview:imageview1];
[window addSubview:imageview2];
window.userInteractionEnabled = NO;
float screenWidth = [UIScreen mainScreen].bounds.size.width;
if (direction == UISwipeGestureRecognizerDirectionLeft)
{
//to left
imageview2.center = CGPointMake(imageview1.center.x + screenWidth, imageview1.center.y);
}
else
{
//to right
imageview2.center = CGPointMake(imageview1.center.x - screenWidth, imageview1.center.y);
}
[UIView animateWithDuration:0.3 animations:^{
if (direction == UISwipeGestureRecognizerDirectionLeft)
{
//to left
imageview1.center = CGPointMake(imageview1.center.x - screenWidth, imageview1.center.y);
imageview2.center = CGPointMake(imageview2.center.x - screenWidth, imageview1.center.y);
}
else
{
//to right
imageview1.center = CGPointMake(imageview1.center.x + screenWidth, imageview1.center.y);
imageview2.center = CGPointMake(imageview2.center.x + screenWidth, imageview1.center.y);
}
} completion:^(BOOL finished)
{
[imageview1 removeFromSuperview];
[imageview2 removeFromSuperview];
window.userInteractionEnabled = YES;
}];
}
分享到:
相关推荐
Java-美妆神域_3rm1m18i_221-wx.zip
51单片机的温度监测与控制(温控风扇)
电赛案例,C++简单的智能家居系统,其中包含了温度监测、光照控制和报警系统。该系统可以: 监控室内温度:当温度超过设定阈值时,触发警报。 自动调节光照:根据光线传感器的值自动调节LED灯的亮度。 入侵检测:通过红外传感器检测入侵,并触发警报。
圣诞树 html版 可修改祝福语。 记事本或vscode编辑html文件:ctrl+F寻找”myLabels“关键词,定位到该处即可修改祝福语
【资源说明】 基于python编写的selenium自动化测试框架,采用PO模式,页面元素采用yaml进行管理资料齐全+详细文档+高分项目+源码.zip 【备注】 1、该项目是个人高分项目源码,已获导师指导认可通过,答辩评审分达到95分 2、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 3、本项目适合计算机相关专业(人工智能、通信工程、自动化、电子信息、物联网等)的在校学生、老师或者企业员工下载使用,也可作为毕业设计、课程设计、作业、项目初期立项演示等,当然也适合小白学习进阶。 4、如果基础还行,可以在此代码基础上进行修改,以实现其他功能,也可直接用于毕设、课设、作业等。 欢迎下载,沟通交流,互相学习,共同进步!
屏幕截图 2024-12-21 170434
基于SpringBoot的学生信息管理系统(前后端源码+数据库+文档+运行截图) 学生信息管理 班级信息管理 教师信息管理 课程信息管理 选课信息管理 考勤信息管理 请假信息管理 成绩信息管理 基于SpringBoot的学生信息管理系统(前后端源码+数据库+文档+运行截图) 学生信息管理 班级信息管理 教师信息管理 课程信息管理 选课信息管理 考勤信息管理 请假信息管理 成绩信息管理基于SpringBoot的学生信息管理系统(前后端源码+数据库+文档+运行截图) 学生信息管理 班级信息管理 教师信息管理 课程信息管理 选课信息管理 考勤信息管理 请假信息管理 成绩信息管理基于SpringBoot的学生信息管理系统(前后端源码+数据库+文档+运行截图) 学生信息管理 班级信息管理 教师信息管理 课程信息管理 选课信息管理 考勤信息管理 请假信息管理 成绩信息管理基于SpringBoot的学生信息管理系统(前后端源码+数据库+文档+运行截图) 学生信息管理 班级信息管理 教师信息管理 课程信息管理 选课信息管理 考勤信息管理
径向基函数内核 – 机器学习 内核在将数据转换为更高维空间方面发挥着重要作用,使算法能够学习复杂的模式和关系。在众多的内核函数中,径向基函数(RBF)内核作为一种多功能且强大的工具脱颖而出。在本文中,我们深入探讨了RBF内核的复杂性,探讨了它的数学公式、直观理解、实际应用及其在各种机器学习算法中的重要性。
详细介绍及样例数据:https://blog.csdn.net/samLi0620/article/details/144636765
51单片机控制的智能小车.7z
【资源说明】 基于卷积神经网络的数字手势识别安卓APP,识别数字手势0-10详细文档+全部资料+优秀项目+源码.zip 【备注】 1、该项目是个人高分项目源码,已获导师指导认可通过,答辩评审分达到95分 2、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 3、本项目适合计算机相关专业(人工智能、通信工程、自动化、电子信息、物联网等)的在校学生、老师或者企业员工下载使用,也可作为毕业设计、课程设计、作业、项目初期立项演示等,当然也适合小白学习进阶。 4、如果基础还行,可以在此代码基础上进行修改,以实现其他功能,也可直接用于毕设、课设、作业等。 欢迎下载,沟通交流,互相学习,共同进步!
python 使用sqlserver必须要这个问题,没办法,只能满世界的找地方下载,终于让我下载到了,现在分享给大家使用
四川采矿场生产安全事故管理制度
简约灰粉共存版_8.0.53.apk
ECharts散点图-全国主要城市空气质量(百度地图)
四川采矿场安全检查管理规定
1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于计算机科学与技术等相关专业,更为适合;
空中俯视物体检测9-YOLOv5数据集合集.rar使用YOLO算法从图像中检测对象-V2 2023-05-11 2:51 PM ============================= *与您的团队在计算机视觉项目上合作 *收集和组织图像 *了解和搜索非结构化图像数据 *注释,创建数据集 *导出,训练和部署计算机视觉模型 *使用主动学习随着时间的推移改善数据集 对于最先进的计算机视觉培训笔记本,您可以与此数据集一起使用 该数据集包括1015张图像。 以YOLO V5 PYTORCH格式注释检测对象 - 图像。 将以下预处理应用于每个图像: *像素数据的自动取向(带有Exif-Arientation剥离) *调整大小为640x640(拉伸) 没有应用图像增强技术。
词云图
Python高分毕设——Python&Opencv手势识别系统(完整源码&自定义UI操作界面&视频教程) Python高分毕设——Python&Opencv手势识别系统(完整源码&自定义UI操作界面&视频教程) 使用了OpenCV的视频采集, 图像色域转换, 颜色通道分割, 高斯滤波, OSTU自动阈值, 凸点检测, 边缘检测, 余弦定理计算手势等功能. 准备工作 安装 Python-OpenCV 库 pip install opencv-python -i https://mirrors.ustc.edu.cn/pypi/web/simple 利用 -i 为pip指令镜像源, 这里使用电子科技大学的源, 速度比官方源更快. 安装 Numpy 科学计算库 pip install numpy -i https://mirrors.ustc.edu.cn/pypi/web/simple 安装 PyAutogui 库 pip install pyautogui -i https://mirrors.ustc.edu.cn/pypi/web/simple 代码实现 import nu