MG--UIScrollView无限滚动

UIScrollView无限滚动的图解:

UIScrollView无限滚动的思路:就是每一次滑动之后显示图片都是最中间的那张图片,每次滑动都要改变图片下标的索引,第一张和最后一张要做特殊判断


UIScrollView无限滚动的代码:

.h文件

//  XMGInfiniteScrollView.h
//  无限滚动-UIScrollView
//  Created by 1 on 14/12/30.
//  Copyright © 2014年 xiaoming. All rights reserved.

#import <UIKit/UIKit.h>
@interface XMGInfiniteScrollView : UIView
#pragma mark - 给外界提供接口
@property (nonatomic, strong) NSArray *imageNames;  /** 本地图片名 */
@property (nonatomic, strong) NSArray *imageNames;   /** 远程图片URL */
//@property (nonatomic, strong) NSArray *images;  /** 图片 */
@end

.m文件

//  XMGInfiniteScrollView.m
//  无限滚动-UIScrollView
//  Created by 1 on 14/12/30.
//  Copyright © 2014年 xiaoming. All rights reserved.

#import "XMGInfiniteScrollView.h"
@interface XMGInfiniteScrollView()

@property (nonatomic, weak) UIScrollView *scrollView;
@property (nonatomic, weak) UIPageControl *pageControl;
@property (nonatomic, weak) NSTimer *timer;
@end
@implementation XMGInfiniteScrollView
static NSUInteger const XMGImageViewCount = 3;
#pragma mark - 初始化方法
- (instancetype)initWithFrame:(CGRect)frame
{
  if (self = [super initWithFrame:frame]) { 
  // 创建并添加scrollView对象
  UIScrollView *scrollView = [[UIScrollView alloc] init];
  scrollView.backgroundColor = [UIColor redColor];
  scrollView.showsVerticalScrollIndicator = NO; // 隐藏垂直滚动条
  scrollView.showsHorizontalScrollIndicator = NO;  // 隐藏水平滚动条
  scrollView.pagingEnabled = YES;  // 分页
  scrollView.delegate = self; // 代理
  [self addSubview:scrollView];
  self.scrollView = scrollView;
  self.scrollView.bounces = NO;
  // 创建3个UIImageView对象
  for (NSUInteger i = 0; i < XMGImageViewCount; i++) {
    UIImageView *imageView = [[UIImageView alloc] init];
    [scrollView addSubview:imageView];
  }
    // 创建pageControl对象
    UIPageControl *pageControl = [[UIPageControl alloc] init];
    pageControl.backgroundColor = [UIColor blueColor];
    [self addSubview:pageControl];
    self.pageControl = pageControl;
    // 开启定时器
    [self startTimer];
  }
   return self;
}
- (void)layoutSubviews
{
  [super layoutSubviews];
  // scrollView
  self.scrollView.frame = self.bounds;
  // 设置pageControl的frame
  CGFloat pageControlW = 100;
  CGFloat pageControlH = 30;
  CGFloat pageControlX = self.bounds.size.width - pageControlW;
  CGFloat pageControlY = self.bounds.size.height - pageControlH;
  self.pageControl.frame = CGRectMake(pageControlX,  pageControlY, pageControlW, pageControlH);
 // 设置3个UIImageView的frame 
 CGFloat imageW = self.scrollView.frame.size.width;
 CGFloat imageH = self.scrollView.frame.size.height;
 for (NSUInteger i = 0; i < XMGImageViewCount; i++) {
   UIImageView *imageView = self.scrollView.subviews[i];
   CGFloat imageX = i * imageW; 
   CGFloat imageY = 0;
   imageView.frame = CGRectMake(imageX, imageY, imageW, imageH);
   imageView.backgroundColor = [UIColor   colorWithRed:arc4random_uniform(255)/255.0 green:arc4random_uniform(255)/255.0   blue:arc4random_uniform(255)/255.0 alpha:1.0];
}
self.scrollView.contentSize = CGSizeMake(XMGImageViewCount * imageW, 0);
// 更新UIImageView内容
   [self updateContent];
}
#pragma mark - 属性setter
- (void)setImageNames:(NSArray *)imageNames
{
  _imageNames = imageNames;
  // 设置总页码
  self.pageControl.numberOfPages = imageNames.count;
}```

#核心代码开头

pragma mark - 其他方法

  • (void)updateContent
    {
    // 1.从左到右重新设置每一个UIImageView的图片
    for (NSUInteger i = 0; i < XMGImageViewCount; i++) {
    UIImageView *imageView = self.scrollView.subviews[i];
    // 求出i位置imageView对应的图片索引
    NSInteger imageIndex = 0; // 这里的imageIndex不能用NSUInteger
    if (i == 0) { // 当前页码 - 1
    imageIndex = self.pageControl.currentPage - 1;
    } else if (i == 2) { // 当前页码 + 1
    imageIndex = self.pageControl.currentPage + 1;
    } else { // // 当前页码
    imageIndex = self.pageControl.currentPage;
    }
    // 判断越界
    if (imageIndex == -1) { // 最后一张图片
    imageIndex = self.imageNames.count - 1;
    } else if (imageIndex == self.imageNames.count) { // 最前面那张
    imageIndex = 0;
    }
    imageView.image = [UIImage imageNamed:self.imageNames[imageIndex]];
    // 绑定图片索引到UIImageView的tag
    imageView.tag = imageIndex;
    }
    // 2.重置UIScrollView的contentOffset.width == 1倍宽度
    self.scrollView.contentOffset = CGPointMake(self.scrollView.frame.size.width, 0);
    }
    核心代码结束

pragma mark -<UIScrollViewDelegate>

/****
*** 只要scrollView滚动,就会调用这个方法

*/

  • (void)scrollViewDidScroll:(UIScrollView *)scrollView
    {
    // imageView的x 和 scrollView偏移量x 的最小差值
    CGFloat minDelta = MAXFLOAT;
    // 找出显示在最中间的图片索引
    NSInteger centerImageIndex = 0;
    for (NSUInteger i = 0; i < XMGImageViewCount; i++) {
    UIImageView *imageView = self.scrollView.subviews[i];
    // ABS : 取得绝对值
    CGFloat delta = ABS(imageView.frame.origin.x - self.scrollView.contentOffset.x);
    if (delta < minDelta) {
    minDelta = delta;
    centerImageIndex = imageView.tag;
    }
    }
    // 设置页码
    self.pageControl.currentPage = centerImageIndex;
    }

/**

  • 滚动完毕后调用(前提:手松开后继续滚动)
    */
  • (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
    {
    [self updateContent];
    }

/**

  • 当用户即将开始拖拽的时候调用
    */
  • (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
    {
    [self stopTimer];
    }

/**

  • 当用户即将结束拖拽的时候调用
    */
  • (void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset
    {
    [self startTimer];
    }

pragma mark - 定时器处理

// 开启定时器

  • (void)startTimer
    {
    self.timer = [NSTimer scheduledTimerWithTimeInterval:2.0 target:self selector:@selector(nextPage) userInfo:nil repeats:YES];
    [[NSRunLoop mainRunLoop] addTimer:self.timer forMode:NSRunLoopCommonModes];
    }
    // 停止定时器
  • (void)stopTimer
    {
    [self.timer invalidate];
    self.timer = nil;
    }
    // 显示下一页
  • (void)nextPage
    {
    [UIView animateWithDuration:0.25 animations:^{
    self.scrollView.contentOffset = CGPointMake(2 * self.scrollView.frame.size.width, 0);
    } completion:^(BOOL finished) {
    [self updateContent];
    }];
    }
    @end```

运行效果图:

UIScrollView的无限循环滚动(封装)UIScrollView的无限循环滚动(封装)来MG明明就是你新浪博客

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

推荐阅读更多精彩内容