iOS中的轮播----collectionView

轮播 顾名思义就是无限滚动. 在日常开发中, 我们经常需要对一些广告和一些图片进行自动的轮播.
一般我们想到的是使用UIScrollView, 上面添加多个照片, 然后前后各添加一张照片, 实现无限滚动, 这样做存在一个问题就是, 如果 图片数量为三五张完全没问题, 但是如果有十几张照片或者浏览照片库的时候就不得不考虑性能问题, 造成内存浪费性能低. 所以今天我们用collectionView的重用机制优化内存.

实现过程:
首先创建collectionView使用collection的flowLayout布局
flowLayout的代码
.h

#import <UIKit/UIKit.h>

@interface LayoutFirst : UICollectionViewFlowLayout

@end

.m

#import "LayoutFirst.h"
#define WIDTH [UIScreen mainScreen].bounds.size.width


@implementation LayoutFirst

- (instancetype)init {
    self = [super init];
    if (self) {
        // item size
        self.itemSize = CGSizeMake(WIDTH,  300);
        self.minimumLineSpacing = 0;
        self.minimumInteritemSpacing = 0;
//        self.sectionInset = UIEdgeInsetsMake(20, 20, 20, 20);
        self.scrollDirection = UICollectionViewScrollDirectionHorizontal;
    }
    return self;
}
@end

还要自定义cell 在cell中创建图片
自定义cell的.h

#import <UIKit/UIKit.h>
@interface CellForImage : UICollectionViewCell
@property (nonatomic, copy) NSString *string;
@end

.m

#import "CellForImage.h"
@interface CellForImage ()
@property (nonatomic, strong) UIImageView *imageViewOfItem;
@end
@implementation CellForImage
- (instancetype)initWithFrame:(CGRect)frame {
    self = [super initWithFrame:frame];
    if (self) {
// 在这里创建子控件但是布局要写到layoutSubviews中
        self.imageViewOfItem = [[UIImageView alloc] init];
        [self addSubview:_imageViewOfItem];
    }
    return self;
}
// 子控件的布局
- (void)layoutSubviews {
// 注意父类的调用
    [super layoutSubviews];
    self.imageViewOfItem.frame = self.bounds;
    self.imageViewOfItem.backgroundColor = [UIColor cyanColor];
}
// cell中照片的setter方法string是照片的name
- (void)setString:(NSString *)string {
    _string = [string copy];
    self.imageViewOfItem.image = [UIImage imageNamed:string];
}
@end

写完上述布局就可以在VC中创建collectionView了

#import "ViewController.h"
#import "LayoutFirst.h"
#import "CellForImage.h"

@interface ViewController () <UICollectionViewDataSource, UICollectionViewDelegate>

@property (nonatomic, strong) UICollectionView *collectionView;

@property (nonatomic, strong) LayoutFirst *flowLayout;

@property (nonatomic, strong) NSMutableArray *mArrOfPhoto;

@property (nonatomic, strong) UIPageControl *page;

@property (nonatomic, strong) NSTimer *timer;
@end

@implementation ViewController

#pragma mark ------------ 处理照片的数组  -----------
- (NSArray *)arrayOfPhoto {

    if (_mArrOfPhoto == nil) {
        
        _mArrOfPhoto = [NSMutableArray array];
        for (int i = 1; i < 11; i++) {
            
            NSString *photoName = [NSString stringWithFormat:@"%d", i];
            [_mArrOfPhoto addObject:photoName];
        }
    }
    return _mArrOfPhoto;   
}

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
    self.navigationController.navigationBar.translucent = NO;
    [self arrayOfPhoto];
// 创建collectionView
    [self createCollrctionView];
    // 创建pageControl
    self.page = [[UIPageControl alloc] initWithFrame:CGRectMake(150, 270, self.view.bounds.size.width - 300, 20)];
    [self.view addSubview:self.page];
    self.page.numberOfPages = self.mArrOfPhoto.count;
    // 添加定时器
    [self addNSTimer];
}
#pragma mark ------------  创建collectionView的实现必须的协议  -----------
- (void)createCollrctionView {
  // flowLayout的初始化可以对item进行设置: 大小, 以及周边距
    self.flowLayout = [[LayoutFirst alloc] init];
    // 创建对象
    self.collectionView = [[UICollectionView alloc] initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, 300) collectionViewLayout:self.flowLayout];
    [self.view addSubview:self.collectionView];
    _collectionView.dataSource = self;
    _collectionView.delegate = self;
    [self.collectionView registerClass:[CellForImage class] forCellWithReuseIdentifier:@"pool"];
    [self.collectionView scrollToItemAtIndexPath:[NSIndexPath indexPathForItem:0 inSection:50] atScrollPosition:UICollectionViewScrollPositionLeft animated:YES];
    self.collectionView.pagingEnabled = YES;
    self.collectionView.showsHorizontalScrollIndicator = NO;
}
// 返回item个数
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {

    return _mArrOfPhoto.count;
}
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {

    CellForImage *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"pool" forIndexPath:indexPath];
    cell.backgroundColor = [UIColor redColor];
    cell.string = _mArrOfPhoto[indexPath.item];
    return cell;
}
// 这里是返回分区的个数(默认为1)
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
    return 100;
}
#pragma mark ------------  添加定时器  -----------
- (void)addNSTimer {
    self.timer = [NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(next) userInfo:nil repeats:YES];
    // 添加到runloop中
    [[NSRunLoop mainRunLoop] addTimer:_timer forMode:NSRunLoopCommonModes];
}
// 定时器的作用, 下一个图
- (void)next {
    // 获取当前正在展示的位置
    NSIndexPath *currentIndexPath = [[self.collectionView indexPathsForVisibleItems] lastObject];
// 反回中间的数据100是返回的分区个数
    NSIndexPath *currentIndexPathRest = [NSIndexPath indexPathForItem:currentIndexPath.item inSection:100 / 2];
    [self.collectionView scrollToItemAtIndexPath:currentIndexPathRest atScrollPosition:UICollectionViewScrollPositionLeft animated:NO];
    // 计算出下一个需要展示的位置
    NSInteger nextItem = currentIndexPathRest.item + 1;
    NSInteger nextSection = currentIndexPathRest.section;
    if (nextItem == self.mArrOfPhoto.count) {   
        nextItem = 0;
        nextSection++;
    }
    NSIndexPath *nextIndexPath = [NSIndexPath indexPathForItem:nextItem inSection:nextSection];
    // 通过动画滚到下一个位置
    [self.collectionView scrollToItemAtIndexPath:nextIndexPath atScrollPosition:UICollectionViewScrollPositionLeft animated:YES];
    self.page.currentPage = nextItem;
}
#pragma mark ------------  当用户拖拽的时候就调用移除定时  -----------
- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView {
    [self removeNSTimer];
}
- (void)removeNSTimer {
    [self.timer invalidate];
    self.timer = nil;
}
#pragma mark ------------  当用户停止拖拽的时候调用  -----------
- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate {
    [self addNSTimer];
}
#pragma mark ------------  设置页码  -----------
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
    int page = (int)(scrollView.contentOffset.x / scrollView.frame.size.width) % self.mArrOfPhoto.count;
    self.page.currentPage = page;
}

这里面主要用到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];

这种方法实现的无限轮播图有一个小缺陷, 就不说了, 自己慢慢发现吧.

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,905评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,140评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,791评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,483评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,476评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,516评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,905评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,560评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,778评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,557评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,635评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,338评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,925评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,898评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,142评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,818评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,347评论 2 342

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,016评论 4 62
  • ZZNewsSheetMenu 关键词 UIScrollView,UILongPressGestureRecogn...
    Colleny_Z阅读 2,062评论 0 2
  • 最近,莫名其妙的被很多人加微信,开场白无一例外:“听说你用两个月,跨专业考上了中传的研究生,我也想考研,想取取经…...
    诺芷汐阅读 1,720评论 23 32
  • 过去的十年都是开车出行,四月开始我常常挤地铁,甚至追过末班车…… 四月的忙碌,让我充实的找不着北,地铁上的...
    英儿少爷阅读 161评论 0 0
  • 笔记:委身喜乐便是委身于摧毁喜乐的每一个仇敌。歼灭敌人却留下一个活口是不够的,有个仇敌还屹立不摇,不但没有受到挑战...
    玲珑_0533阅读 341评论 0 1