内容简介:同学们在写需求的时候肯定会时常用到UIScrollView。而说到UIScrollView,大家最先想到的肯定就是它上面的无限轮播功能。苹果在UIScrollView上并没有提供相应的方法让大家实现轮播,所以就需要通过代码进行处理来实现。先上图我先给大家讲讲其实现的原理:
同学们在写需求的时候肯定会时常用到UIScrollView。而说到UIScrollView,大家最先想到的肯定就是它上面的无限轮播功能。苹果在UIScrollView上并没有提供相应的方法让大家实现轮播,所以就需要通过代码进行处理来实现。先上图
我先给大家讲讲其实现的原理:
我们假设用几张图片实现轮播效果。首先,我们需要打开UIScrollView的分页滑动
/// 分页滑动 _scrollView.scrollEnabled = YES;
它方便的帮助我们实现了轮播的效果,然后就需要我们来实现“无限的”轮播。接下来,我们就需要摆放图片了,在摆放图片时需要注意,我们需要在第一张图片的位置摆放最后一张图片(可能有点懵哈,不过不要着急慢慢往下看),然后我们依次摆放图片(从第一张到最后一张),最后在所有图片的尾部我们再放上第一张图片。这样我们就多放了两张图片(分别在首尾多放了一张图)。我把对应的方法写一下:
/// 将图片放置在UIScrollView上 -(void)setupImage { /// 在UIScrollView的最前面添加一张图片 UIImageView *firstImageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, kScreenWidth, self.scrollView.frame.size.height)]; /// 图片名是最后一张图片 firstImageView.image = [UIImage imageNamed:self.imageNameList.lastObject]; [self.scrollView addSubview:firstImageView]; /// 添加图片 for (NSInteger index = 0; index < self.imageNameList.count; index ++) { /// UIScrollView上的每一张图片 UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake((index + 1) * kScreenWidth, 0, kScreenWidth, self.scrollView.frame.size.height)]; imageView.image = [UIImage imageNamed:self.imageNameList[index]]; [self.scrollView addSubview:imageView]; self.scrollView.contentSize = CGSizeMake((index + 2) * self.scrollView.bounds.size.width, 0); } /// 在UIScrollView的最后面添加一张图片 UIImageView *lastImageView = [[UIImageView alloc] initWithFrame:CGRectMake((self.imageNameList.count + 1) * kScreenWidth, 0, kScreenWidth, self.scrollView.frame.size.height)]; /// 图片名是第一张图片 lastImageView.image = [UIImage imageNamed:self.imageNameList.firstObject]; [self.scrollView addSubview:lastImageView]; /// 设置UIScrollView的偏移量 self.scrollView.contentSize = CGSizeMake((self.imageNameList.count + 2) * self.scrollView.bounds.size.width, 0); /// 设置UIScrollView的起始偏移距离(将第一张图片跳过) self.scrollView.contentOffset = CGPointMake(kScreenWidth, 0); /// 图片总数 self.pageControl.numberOfPages = self.imageNameList.count; self.pageControl.currentPage = 0; }
其实,如果大家看到这里,应该就会大致明白无线轮播的实现原理了。接下来就是最后一步,在UIScrollView的代理方法里面写逻辑:判断UIScrollView的偏移量,当其滑动到首位时(显示的是最后一张图片),滑动停止,就把偏移量修改最后面图片的位置上(倒数第二张)。同理,当UIScrollView滑动到最后时(显示的是第一张图片),滑动停止,就把偏移量修改到第一张图片的位置上(正数第二张)。
#pragma mark - UIScrollViewDelegate -(void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView { /// 当UIScrollView滑动到第一位停止时,将UIScrollView的偏移位置改变 if (scrollView.contentOffset.x == 0) { scrollView.contentOffset = CGPointMake(self.imageNameList.count * kScreenWidth, 0); self.pageControl.currentPage = self.imageNameList.count; /// 当UIScrollView滑动到最后一位停止时,将UIScrollView的偏移位置改变 } else if (scrollView.contentOffset.x == (self.imageNameList.count + 1)* kScreenWidth) { scrollView.contentOffset = CGPointMake(kScreenWidth, 0); self.pageControl.currentPage = 0; } else { self.pageControl.currentPage = scrollView.contentOffset.x / kScreenWidth - 1; } }
ok,原理其实就是这样。在首尾多加两张图片当做占位符,然后当UIScrollView滑动到占位符的位置时,改变UIScrollView的偏移量,简单且方便。下面就是全部代码:
#import "ViewController.h" #define kScreenWidth [UIScreen mainScreen].bounds.size.width @interface ViewController () <UIScrollViewDelegate> /// 滑动控制器 @property (nonatomic, strong) UIScrollView *scrollView; /// 图片数组 @property (nonatomic, strong) NSArray<NSString *> *imageNameList; /// 页码控制器 @property (nonatomic, strong) UIPageControl *pageControl; @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; // 设置图片名的数组 self.imageNameList = @[@"image0", @"image1", @"image2", @"image3"]; // 添加图片 [self setupImage]; } /// 将图片放置在UIScrollView上 -(void)setupImage { /// 在UIScrollView的最前面添加一张图片 UIImageView *firstImageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, kScreenWidth, self.scrollView.frame.size.height)]; /// 图片名是最后一张图片 firstImageView.image = [UIImage imageNamed:self.imageNameList.lastObject]; [self.scrollView addSubview:firstImageView]; /// 添加图片 for (NSInteger index = 0; index < self.imageNameList.count; index ++) { /// UIScrollView上的每一张图片 UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake((index + 1) * kScreenWidth, 0, kScreenWidth, self.scrollView.frame.size.height)]; imageView.image = [UIImage imageNamed:self.imageNameList[index]]; [self.scrollView addSubview:imageView]; self.scrollView.contentSize = CGSizeMake((index + 2) * self.scrollView.bounds.size.width, 0); } /// 在UIScrollView的最后面添加一张图片 UIImageView *lastImageView = [[UIImageView alloc] initWithFrame:CGRectMake((self.imageNameList.count + 1) * kScreenWidth, 0, kScreenWidth, self.scrollView.frame.size.height)]; /// 图片名是第一张图片 lastImageView.image = [UIImage imageNamed:self.imageNameList.firstObject]; [self.scrollView addSubview:lastImageView]; /// 设置UIScrollView的偏移量 self.scrollView.contentSize = CGSizeMake((self.imageNameList.count + 2) * self.scrollView.bounds.size.width, 0); /// 设置UIScrollView的起始偏移距离(将第一张图片跳过) self.scrollView.contentOffset = CGPointMake(kScreenWidth, 0); /// 图片总数 self.pageControl.numberOfPages = self.imageNameList.count; self.pageControl.currentPage = 0; } #pragma mark - UIScrollViewDelegate -(void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView { /// 当UIScrollView滑动到第一位停止时,将UIScrollView的偏移位置改变 if (scrollView.contentOffset.x == 0) { scrollView.contentOffset = CGPointMake(self.imageNameList.count * kScreenWidth, 0); self.pageControl.currentPage = self.imageNameList.count; /// 当UIScrollView滑动到最后一位停止时,将UIScrollView的偏移位置改变 } else if (scrollView.contentOffset.x == (self.imageNameList.count + 1)* kScreenWidth) { scrollView.contentOffset = CGPointMake(kScreenWidth, 0); self.pageControl.currentPage = 0; } else { self.pageControl.currentPage = scrollView.contentOffset.x / kScreenWidth - 1; } } #pragma mark - Get方法 -(UIScrollView *)scrollView { if (!_scrollView) { _scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, kScreenWidth, 200)]; _scrollView.pagingEnabled = YES; _scrollView.clipsToBounds = NO; _scrollView.scrollEnabled = YES; _scrollView.delegate = self; _scrollView.bounces = NO; _scrollView.showsHorizontalScrollIndicator = NO; _scrollView.showsVerticalScrollIndicator = NO; [self.view addSubview:_scrollView]; } return _scrollView; } -(UIPageControl *)pageControl { if (!_pageControl) { _pageControl = [[UIPageControl alloc] initWithFrame:CGRectMake(0, 150, kScreenWidth, 50)]; _pageControl.pageIndicatorTintColor = [UIColor blackColor]; _pageControl.currentPageIndicatorTintColor = [UIColor grayColor]; [self.view addSubview:_pageControl]; } return _pageControl; } @end
好了,如果大家使用的是swift语言,还可以参考这篇文章: https://www.jianshu.com/p/0ba33e59a784
作者:枫developer
链接:https://www.jianshu.com/p/7c4b79e5b123
以上所述就是小编给大家介绍的《iOS 实现UIScrollView的无限轮播(原理)》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- Docker实现原理之 - OverlayFS实现原理
- 微热山丘,探索 IoC、AOP 实现原理(二) AOP 实现原理
- 带你了解vue计算属性的实现原理以及vuex的实现原理
- Docker原理之 - CGroup实现原理
- AOP如何实现及实现原理
- webpack 实现 HMR 及其实现原理
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
算法概论
Sanjoy Dasgupta、Christos Papadimitriou、Umesh Vazirani / 钱枫 注、邹恒明 注 / 机械工业出版社 / 2009-1 / 55.00元
《算法概论(注释版)》源自加州大学伯克利分校和加州大学圣迭戈分校本科生的算法课讲义,以独特的视角展现了算法设计的精巧技术及魅力。在表达每一种技术时,强调每个算法背后的简洁数学思想,分析其时间和空间效率,运用与其他技术类比的方法来说明特征,并提供了大量实例。《算法概论(注释版)》以人类最古老的算法(算术运算)为起点,将各种算法中优美而有代表性的内容囊括书中,并以最前沿的理论(量子算法)结束,构成了较......一起来看看 《算法概论》 这本书的介绍吧!
JSON 在线解析
在线 JSON 格式化工具
XML、JSON 在线转换
在线XML、JSON转换工具