服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - IOS - IOS使用UICollectionView实现无限轮播效果

IOS使用UICollectionView实现无限轮播效果

2021-01-12 16:06yixiangboy IOS

这篇文章主要为大家详细介绍了IOS使用UICollectionView实现无限轮播效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

一、案例演示

本案例demo演示的是一个首页轮播的案例,支持手动轮播和自动轮播。知识点主要集中在uicollectionview和nstimer的使用。

IOS使用UICollectionView实现无限轮播效果

二、知识储备

2.1、uicollectionview横向布局

只需要设置uicollectionviewflowlayout的scrolldirection为uicollectionviewscrolldirectionhorizontal即可。

2.2、nstimer的基本使用

nstimer的初始化:

 

复制代码 代码如下:
 + (nstimer *)scheduledtimerwithtimeinterval:(nstimeinterval)ti target:(id)atarget selector:(sel)aselector userinfo:(nullable id)userinfo repeats:(bool)yesorno;

 

1)、(nstimeinterval)ti : 预订一个timer,设置一个时间间隔。
表示输入一个时间间隔对象,以秒为单位,一个>0的浮点类型的值,如果该值<0,系统会默认为0.1。
2)、target:(id)atarget : 表示发送的对象,如self
3)、selector:(sel)aselector : 方法选择器,在时间间隔内,选择调用一个实例方法
4)、userinfo:(nullable id)userinfo : 需要传参,可以为nil
5)、repeats:(bool)yesorno : 当yes时,定时器会不断循环直至失效或被释放,当no时,定时器会循环发送一次就失效。
开启定时器:

 

复制代码 代码如下:
[[nsrunloop mainrunloop] addtimer:timer formode:nsrunloopcommonmodes];

 

关闭定时器:

[self.timer invalidate];

2.3、自动轮播和手动轮播的切换

初始化的时候,我们默认开启定时器,定时执行切换到下一张图片的函数。当用户触摸到view的时候,我们则要关闭定时器,手动的进行uicollectionview的切换。当用户的手离开了view,我们要重新打开定时器,进行自动轮播的切换。

三、关键代码分析

3.1、生成uicollectionviewflowlayout对象,设置他的滚动方向为水平滚动  

?
1
2
3
4
uicollectionviewflowlayout *flowlayout = [[uicollectionviewflowlayout alloc] init];
flowlayout.itemsize = cgsizemake(screen_width, 200);
flowlayout.scrolldirection = uicollectionviewscrolldirectionhorizontal;
flowlayout.minimumlinespacing = 0;

3.2、初始化uicollectionview对象 

?
1
2
3
4
5
6
7
uicollectionview *collectionview = [[uicollectionview alloc] initwithframe:cgrectmake(0, self.navbarheight, screen_width, 200) collectionviewlayout:flowlayout];
collectionview.delegate = self;
collectionview.datasource = self;
collectionview.showshorizontalscrollindicator = no;
collectionview.pagingenabled = yes;
collectionview.backgroundcolor = [uicolor clearcolor];
[self.view addsubview:collectionview];

3.3、uicollectionview的uicollectionviewdatasource代理方法

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma mark- uicollectionviewdatasource
-(nsinteger)numberofsectionsincollectionview:(uicollectionview *)collectionview{
 return yymaxsections;
}
 
-(nsinteger)collectionview:(uicollectionview *)collectionview numberofitemsinsection:(nsinteger)section{
 return self.newses.count;
}
 
-(uicollectionviewcell *)collectionview:(uicollectionview *)collectionview cellforitematindexpath:(nsindexpath *)indexpath{
 
 
 yycell *cell = [collectionview dequeuereusablecellwithreuseidentifier:yyidcell forindexpath:indexpath];
 if(!cell){
 cell = [[yycell alloc] init];
 }
 cell.news=self.newses[indexpath.item];
 return cell;
}

3.4、定时器的开启和关闭

?
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma mark 添加定时器
-(void) addtimer{
 nstimer *timer = [nstimer scheduledtimerwithtimeinterval:1 target:self selector:@selector(nextpage) userinfo:nil repeats:yes];
 [[nsrunloop mainrunloop] addtimer:timer formode:nsrunloopcommonmodes];
 self.timer = timer ;
 
}
 
#pragma mark 删除定时器
-(void) removetimer{
 [self.timer invalidate];
 self.timer = nil;
}

3.5、手动切换 和 自动轮播 的切换

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-(void) scrollviewwillbegindragging:(uiscrollview *)scrollview{
 [self removetimer];
}
 
#pragma mark 当用户停止的时候调用
-(void) scrollviewdidenddragging:(uiscrollview *)scrollview willdecelerate:(bool)decelerate{
 [self addtimer];
 
}
 
#pragma mark 设置页码
-(void) scrollviewdidscroll:(uiscrollview *)scrollview{
 int page = (int) (scrollview.contentoffset.x/scrollview.frame.size.width+0.5)%self.newses.count;
 self.pagecontrol.currentpage =page;
}

3.6、自动轮播切换到下一个view的方法

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-(void) nextpage{
 nsindexpath *currentindexpath = [[self.collectionview indexpathsforvisibleitems] lastobject];
 
 nsindexpath *currentindexpathreset = [nsindexpath indexpathforitem:currentindexpath.item insection:yymaxsections/2];
 [self.collectionview scrolltoitematindexpath:currentindexpathreset atscrollposition:uicollectionviewscrollpositionleft animated:no];
 
 nsinteger nextitem = currentindexpathreset.item +1;
 nsinteger nextsection = currentindexpathreset.section;
 if (nextitem==self.newses.count) {
 nextitem=0;
 nextsection++;
 }
 nsindexpath *nextindexpath = [nsindexpath indexpathforitem:nextitem insection:nextsection];
 
 [self.collectionview scrolltoitematindexpath:nextindexpath atscrollposition:uicollectionviewscrollpositionleft animated:yes];
}

demo下载地址:https://github.com/yixiangboy/yxcollectionview

以上就是本文的全部内容,希望对大家的学习有所帮助。

延伸 · 阅读

精彩推荐
  • IOSiOS逆向教程之logify跟踪方法的调用

    iOS逆向教程之logify跟踪方法的调用

    这篇文章主要给大家介绍了关于iOS逆向教程之logify跟踪方法调用的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学...

    Mr.Guo11472021-04-28
  • IOSiOS常见的几个修饰词深入讲解

    iOS常见的几个修饰词深入讲解

    这篇文章主要给大家介绍了关于iOS常见的几个修饰词的相关资料,iOS修饰词包括assign、weak、strong、retain、copy、nonatomic、atomic、readonly、readwrite,文中通过示...

    郡王丶千夜7422021-05-10
  • IOSIOS网络请求之AFNetWorking 3.x 使用详情

    IOS网络请求之AFNetWorking 3.x 使用详情

    本篇文章主要介绍了IOS网络请求之AFNetWorking 3.x 使用详情,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    总李写代码6892021-03-04
  • IOSiOS中时间与时间戳的相互转化实例代码

    iOS中时间与时间戳的相互转化实例代码

    这篇文章主要介绍了iOS中时间与时间戳的相互转化实例代码,非常具有实用价值,需要的朋友可以参考下。...

    张无忌!4812021-03-09
  • IOSiOS10 Xcode8适配7个常见问题汇总

    iOS10 Xcode8适配7个常见问题汇总

    这篇文章主要为大家详细汇总了iOS10 Xcode8适配7个常见问题,具有一定的参考价值,感兴趣的小伙伴们可以参考一下...

    索马里猫10332021-02-01
  • IOS谈一谈iOS单例模式

    谈一谈iOS单例模式

    这篇文章主要和大家谈一谈iOS中的单例模式,单例模式是一种常用的软件设计模式,想要深入了解iOS单例模式的朋友可以参考一下...

    彭盛凇11872021-01-19
  • IOSxcode8提交ipa失败无法构建版本问题的解决方案

    xcode8提交ipa失败无法构建版本问题的解决方案

    xcode升级到xcode8后发现构建不了新的版本。怎么解决呢?下面小编给大家带来了xcode8提交ipa失败无法构建版本问题的解决方案,非常不错,一起看看吧...

    Cinna丶7542021-02-03
  • IOSiOS APP实现微信H5支付示例总结

    iOS APP实现微信H5支付示例总结

    这篇文章主要介绍了iOS APP实现微信H5支付示例总结,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下...

    一张小A11332021-06-01