图片循环轮播器的实现原理和注意点

首先封装一个控件还是很有意思的,可以对以前学到的或博客看到的一些思想有更深的理解,这主要是对于初中级开发人员,高级应该可以分分钟写一个出来
而且开发者流行那句:talk is cheap, show me the code。其实重要的也不是代码,而是代码里面的思想,逻辑,你的代码扩展性,耦合性好不好。可能正是这样的原因,大公司才更乐意接收985等高校的科班人员吧。

废话少说,开始讲讲我对循环轮播器的封装吧。

RSImageLoopView原理

上一篇基本的原理已经讲了,今天就讲细节和核心代码

  • 核心代码
    NSIndexPath *currentIndexPath = [[self.collectionView indexPathsForVisibleItems] lastObject];
    NSIndexPath *currentIndexPathReset = [NSIndexPath indexPathForItem:currentIndexPath.item inSection:50];
    [self.collectionView scrollToItemAtIndexPath:currentIndexPathReset atScrollPosition:UICollectionViewScrollPositionLeft animated:NO];

定时器每次调用跳到下一张图片方法的时候,都预先无动画滚到第50组的当前图片位置,然后再有动画的滚到下一张图片。

  • 无限轮播中无限的原理
    将collectionView的sections设为100,初始化出来滚到第50组,然后定时器只要工作了,由于上面的核心代码,就可以一直在展示第50组和第51组的第一个item。如果想出现bug需要你手动不停的从第50组拖到第100组或者第0组,只要停了一次让定时器工作了,就得重新开始,我觉得世上可能没有这种无聊的人如果你想遇见这种奇葩,也不会有bug,可以在下面的注意点找到办法

你自己实现无限轮播或者使用RSImageLoopView的注意点

无限轮播器的原理其实就是上面那么简单,主要就是那三行代码,其中注意点如下:

  • 对于定时器的循环引用,导致的原理我就不介绍了,简单讲一下就是:因为定时器的repeat参数设为YES的时候,会对方法的对象有强引用,而且系统又对定时器有强引用导致内存泄漏,我封装的处理方法是:暴露给外界一个移除定时器的方法,让其在持有RSImageLoopView的控制器在释放前调用
  • 对于定时器还有一个小细节就是推荐使用weak,既然有系统帮你管理,你又何必去自己置nil呢
  • 对于遇见奇葩的人可能坚持不懈地在那往一处滑可能导致的bug,你可以在代理方法scrollViewDidEndDragging中判断到第几组时,你再切到第50组.
  • 还有一个就是点击view的时候我建议使用addTargrt而非bolck,代码看了更直观舒服,但是有一个问题就是performSelector方法会有警告,因为arc并不知道调用该方法会有什么返回值,最后经过查询其他开发者的博客,我选择的是函数指针的方式:
        SEL selector = _sel;
        //imp 函数指针
        IMP imp = [_target methodForSelector:selector];
        //函数 void: 返回类型  id: 调用对象类型 SEL:方法对象类型 
        void (*func)(id, SEL) = (void *)imp;
        //执行调用函数 target 调用对象 selector:方法
        func(_target, selector);

主要一些方法写在下面

跳转下一页,定时器方法
- (void)nextpage {
    NSIndexPath *currentIndexPath = [[self.collectionView indexPathsForVisibleItems] lastObject];
    NSIndexPath *currentIndexPathReset = [NSIndexPath indexPathForItem:currentIndexPath.item inSection:50];
    [self.collectionView scrollToItemAtIndexPath:currentIndexPathReset atScrollPosition:UICollectionViewScrollPositionLeft animated:NO];
    
    NSInteger nextItem = currentIndexPathReset.item +1;
    NSInteger nextSection = currentIndexPathReset.section;
    if (nextItem==self.imageViewArray.count) {
        nextItem=0;
        nextSection++;
    }
    NSIndexPath *nextIndexPath = [NSIndexPath indexPathForItem:nextItem inSection:nextSection];
    
    [self.collectionView scrollToItemAtIndexPath:nextIndexPath atScrollPosition:UICollectionViewScrollPositionLeft animated:YES];
}

// collectionView的设置
- (UICollectionView *)collectionView
{
    if (!_collectionView)
    {
        UICollectionViewFlowLayout *layout = ({
            layout = [[UICollectionViewFlowLayout alloc] init];
            layout.itemSize = self.frame.size;
            layout.minimumLineSpacing = 0;
            layout.minimumInteritemSpacing = 0;
            layout.scrollDirection = UICollectionViewScrollDirectionHorizontal;
            layout;
        });
        
        UICollectionView *collectionView = ({
            collectionView = [[UICollectionView alloc] initWithFrame:self.bounds collectionViewLayout:layout];
            collectionView.backgroundColor = [UIColor clearColor];
            collectionView.pagingEnabled = YES;
            collectionView.showsHorizontalScrollIndicator = NO;
            
            collectionView.dataSource = self;
            collectionView.delegate = self;
            
            // 添加点按手势
            UITapGestureRecognizer *tapGestureRecognizer = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tap)];
            [collectionView addGestureRecognizer:tapGestureRecognizer];
            
            _collectionView = collectionView;
            collectionView;
        });
        
    }
    return _collectionView;
}

定时器内存泄漏截图如下:
代码部分的硬伤请暂时忽略


图片循环轮播器的实现原理和注意点_第1张图片
![Snip20170415_2.png](http://upload-images.jianshu.io/upload_images/2956696-3b41c35e3d7cb7fd.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

你可能感兴趣的:(图片循环轮播器的实现原理和注意点)