Objective-C实现无限循环轮播器

先看看效果图:

具体实现代码:

1. 控制器 

//
// AppDelegate.m
// 无限轮播器
//
// Created by zhangmi on 16/5/16.
// Copyright © 2016年 Paramount Pictures. All rights reserved.
//
#import "ViewController.h"
#import "SNInfiniteScrollView.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
 [super viewDidLoad];
 // Do any additional setup after loading the view, typically from a nib.

 NSMutableArray * images = [NSMutableArray array];
 for (int i = 0; i < 5; i++) {
  NSString * imageName = [NSString stringWithFormat:@"ad_%02d", i]; //img01
  UIImage * image = [UIImage imageNamed:imageName];
  [images addObject:image];
 }
 UIView * scrollView = [SNInfiniteScrollView scrollViewWithFrame:CGRectMake(0, 20, 414, 200) superView:self.view images:images scrollDirection:ScrollDirectionHorizontal pageIndicatorTintColor:[UIColor lightGrayColor] currentPageIndicatorTintColor:[UIColor orangeColor] imageViewcontentMode:UIViewContentModeScaleAspectFit];

 [self.view addSubview:scrollView];
}

@end

2. 显示内容界面设置

//
// AppDelegate.m
// 无限轮播器
//
// Created by zhangmi on 16/5/16.
// Copyright © 2016年 Paramount Pictures. All rights reserved.
//

#import "SNInfiniteScrollView.h"

static int const ImageViewCount = 3;
#define scrollViewWidth self.scrollView.frame.size.width
#define scrollViewHeight self.scrollView.frame.size.height

@interface SNInfiniteScrollView () <UIScrollViewDelegate>

@property(weak, nonatomic) UIScrollView * scrollView;
@property(weak, nonatomic) NSTimer * timer;
/** pageIndex */
@property(nonatomic, assign) NSInteger pageIndex;

@end

@implementation SNInfiniteScrollView

- (void)setImages:(NSArray<UIImage *> *)images {

 _images = images;

 // 设置页码
 self.pageIndex = 0;

 // 设置内容
 [self updateContent];

 // 开始定时器
 [self startTimer];
}

/** 代码创建的时候调用. */
- (instancetype)initWithFrame:(CGRect)frame {
 if (self = [super initWithFrame:frame]) {
  // 滚动视图
  UIScrollView * scrollView = [[UIScrollView alloc] init];

  self.scrollView = scrollView;
  scrollView.delegate = self;
  // scroller属性
  scrollView.showsHorizontalScrollIndicator = NO;
  scrollView.showsVerticalScrollIndicator = NO;
  scrollView.pagingEnabled = YES;
  scrollView.bounces = NO;
  // 添加scrollView
  [self addSubview:scrollView];

  // 图片控件
  for (int i = 0; i < ImageViewCount; i++) {
   UIImageView * imageView = [[UIImageView alloc] init];
   // 图片不变形处理.
   imageView.contentMode = self.imageViewcontentMode;
   [scrollView addSubview:imageView];
  }
 }
 return self;
}
/** 布局 子控件, 只执行一次 */
- (void)layoutSubviews {
 [super layoutSubviews];

 self.scrollView.frame = self.bounds;
 if (self.scrollDirection == ScrollDirectionVertical) {
  self.scrollView.contentSize = CGSizeMake(0, ImageViewCount * self.bounds.size.height);
 } else {
  self.scrollView.contentSize = CGSizeMake(ImageViewCount * self.bounds.size.width, 0);
 }

 for (int i = 0; i < ImageViewCount; i++) {
  UIImageView * imageView = self.scrollView.subviews[i];

  if (self.scrollDirection == ScrollDirectionVertical) {
   imageView.frame = CGRectMake(0, i * self.scrollView.frame.size.height, self.scrollView.frame.size.width, self.scrollView.frame.size.height);
  } else {
   imageView.frame = CGRectMake(i * self.scrollView.frame.size.width, 0, self.scrollView.frame.size.width, self.scrollView.frame.size.height);
  }
 }
 // 设置内容
 [self updateContent];
}
#pragma mark - 内容更新
- (void)updateContent {
 // 设置图片
 for (int i = 0; i < self.scrollView.subviews.count; i++) {

  NSInteger pageIndex = self.pageIndex;
  // 遍历每一个imageView
  UIImageView * imageView = self.scrollView.subviews[i];

  if (i == 0) {
   pageIndex--;
  } else if (i == 2) {
   pageIndex++;
  }

  if (pageIndex < 0) {
   pageIndex = self.images.count - 1;
  } else if (pageIndex >= self.images.count) {
   pageIndex = 0;
  }
  // 图片角标 赋值给 imageView的tag
  imageView.tag = pageIndex;
  imageView.image = self.images[imageView.tag];
 }

 // 设置偏移量在中间 // 不能使用带动画 contentOffset
 if (self.scrollDirection == ScrollDirectionVertical) {
  self.scrollView.contentOffset = CGPointMake(0, scrollViewHeight);
 } else {
  self.scrollView.contentOffset = CGPointMake(scrollViewWidth, 0);
 }
}
#pragma mark - <UIScrollViewDelegate>
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
 // 找出最中间的那个图片控件
 NSInteger page = self.pageIndex;
 CGPoint point = CGPointZero;
 for (int i = 0; i < self.scrollView.subviews.count; i++) {
  UIImageView * imageView = self.scrollView.subviews[i];
  point = [scrollView convertPoint:imageView.frame.origin toView:self.superview];
  //=****** other way ****************** stone ***
  if (self.scrollDirection == ScrollDirectionVertical) {
   if (ABS(point.y - self.frame.origin.y) < 1.0) {
    page = imageView.tag;
   }
  } else {
   if (ABS(point.x - self.frame.origin.x) < 1.0) {
    page = imageView.tag;
   }
  }
 }
 self.pageIndex = page;
 self.pageControl.currentPage = page;

 //拖动结束会调用 [self updateContent];
 //#warning mark - 没有动画正常 , 有动画不动, 一直是原点
 // [self updateContent]; // 没有动画正常 , 有动画不动, 一直是原点
}
/** 开始拖拽 */
- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView {
 // 停止定时器
 [self stopTimer];
}
/** 结束拖拽 */
- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate {
 // 开启定时器
 [self startTimer];
}
/** 减速完毕 */
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView {
 // 更新内容 , 如果contentOffset 不带动画的话 不走这个方法
 [self updateContent];
}
/** 结束滚动动画 */ // 这是保险的做法吧... 如果contentOffset 不带动画的话 不走这个方法
- (void)scrollViewDidEndScrollingAnimation:(UIScrollView *)scrollView {
 // 更新内容
 [self updateContent];
}

#pragma mark - 定时器处理
- (void)startTimer {

 NSTimer * timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(next:) userInfo:nil repeats:YES];
 // [[NSRunLoop mainRunLoop] addTimer:timer forMode:NSRunLoopCommonModes];
 [[NSRunLoop currentRunLoop] addTimer:timer forMode:NSRunLoopCommonModes];
 self.timer = timer;
}

- (void)stopTimer {
 [self.timer invalidate];
 self.timer = nil;
}

- (void)next:(NSTimer *)timer {
 if (self.scrollDirection == ScrollDirectionVertical) {
  [self.scrollView setContentOffset:CGPointMake(0, 2 * self.scrollView.frame.size.height) animated:YES];
 } else {
  [self.scrollView setContentOffset:CGPointMake(2 * self.scrollView.frame.size.width, 0) animated:YES];
 }
}
//=****** 简单调用 ****************** stone ***
+ (instancetype)scrollViewWithFrame:(CGRect)frame superView:(UIView *)superView images:(NSArray<UIImage *> *)images scrollDirection:(ScrollDirection)scrollDirection pageIndicatorTintColor:(UIColor *)pageIndicatorTintColor currentPageIndicatorTintColor:(UIColor *)currentPageIndicatorTintColor imageViewcontentMode:(UIViewContentMode)imageViewcontentMode {

 //=****** 添加自定义scrollView ****************** stone ***
 SNInfiniteScrollView * scrollView = [[SNInfiniteScrollView alloc] init];
 scrollView.frame = frame;
 scrollView.imageViewcontentMode = imageViewcontentMode;
 scrollView.scrollDirection = scrollDirection;
 //=****** 添加image ****************** stone ***
 scrollView.images = images;
 //=****** 添加pageControl ****************** stone ***
 UIPageControl * pageControl = [[UIPageControl alloc] init];
 scrollView.pageControl = pageControl;
 pageControl.enabled = NO;
 pageControl.currentPageIndicatorTintColor = currentPageIndicatorTintColor;
 pageControl.pageIndicatorTintColor = pageIndicatorTintColor;
 pageControl.numberOfPages = scrollView.images.count;
 pageControl.bounds = CGRectMake(0, 0, scrollView.bounds.size.width, 44);
 pageControl.center = CGPointMake(scrollView.bounds.size.width * 0.5, scrollView.bounds.size.height * 0.9);
 [scrollView addSubview:pageControl];
 [superView addSubview:scrollView];
 //=************************ stone ***
 return scrollView;
}

@end

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

(0)

相关推荐

  • JavaScript实现带标题的图片轮播特效

    图片轮播,在一些购物网站上运用的不胜枚举,下面简单介绍一下图片轮播的实现. 如图 CSS代码: <style type="text/css"> .body{ width:524px; border:solid 1px #666; margin-left:auto; margin-right:auto; } .bg{ background-color:#E0E0E0; height:20px; border-top:solid 1px #B4B4B4; } .number{

  • 最简单的JavaScript图片轮播代码(两种方法)

    通过改变每个图片的opacity属性: 素材图片: 代码一: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-"> <title>最简单的轮播广告</title> <style> body, div, ul, li { margin: ; padding: ; } ul { list-style-type: non

  • IOS图片无限轮播器的实现原理

    首先实现思路:整个collectionView中只有2个cell.中间始终显示第二个cell. 滚动:向前滚动当前cell的脚标为0,向后滚动当前的cell脚标为2.利用当前cell的脚标减去1,得到+1,或者-1,来让图片的索引加1或者减1,实现图片的切换. 声明一个全局变量index来保存图片的索引,用来切换显示在当前cell的图片. 在滚动前先让显示的cell的脚标变为1.代码viewDidLoad中设置 完成一次滚动结束后,代码再设置当前的cell为第二个cell(本质上就是让当前显示的

  • 原生javascript实现图片轮播效果代码

    看到BlueDream在他博客上写的javascript仿QQ滑动菜单的效果,代码实在是优雅,相比较差别一下就凸显了,下次再把他代码的精髓偷过来,嘿嘿. [原理简述] html和css跟JQuery实现图片轮播效果里面的一样,略去.主要是几个公共函数,渐显和渐失,用闭包实现.至于主体逻辑部分,非常一般. [程序源码] 贴几个公共函数算了,fadeIn,渐显,fadeOut,渐失 复制代码 代码如下: function id(name) {return document.getElementByI

  • javascript五图轮播切换实用版

    复制代码 代码如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv=&qu

  • iOS实现无限循环图片轮播器的封装

    项目中很多时候会碰到这个需求,实现多张图片的无限循环轮转,以前做过,项目中几个地方的都用到了,当时没有封装,几个地方都拷贝几乎一样的代码,代码复用性不好,今天没事封装了一下,使用起来比较简单. 首先,说说我实现循环轮转图片的思想,在UIScrollView中添加了3个UIImageView,并排排列,我们看到的永远只是第二个UIImageView,这样的话,你一直可以向左,向右滑动,当你向左滑动是,这是你滑动到了最后一个UIImageView不能在向左边滑动了,这时,我在后面悄悄的将第二个UII

  • Objective-C实现无限循环轮播器

    先看看效果图: 具体实现代码: 1. 控制器  // // AppDelegate.m // 无限轮播器 // // Created by zhangmi on 16/5/16. // Copyright © 2016年 Paramount Pictures. All rights reserved. // #import "ViewController.h" #import "SNInfiniteScrollView.h" @interface ViewContr

  • Javascript实现视频轮播在pc端与移动端均可

    最近客户要求用Javascript实现视频轮播: 有兴趣的同学可以参开一下 下面写了一个程序实现视频轮播,pc端与移动端均可以实现, 但移动端,存在有一点bug; 复制代码 代码如下: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <met

  • Android仿京东淘宝自动无限循环轮播控件思路详解

    在App的开发中,很多的时候都需要实现类似京东淘宝一样的自动无限轮播的广告栏,所以就自己写了一个,下面是我自定义控件的思路和过程. 一.自定义控件属性 新建自定义控件SliderLayout继承于RelativeLayout,首先要考虑的就是自定义的控件需要扩展那些属性,把这些属性列出来.在这里是要实现类似于京东淘宝的无限轮播广告栏,那么首先想到的就是轮播的时长.轮播指示器的样式等等.我在这里列举了一些并且结合到了代码中. 1.扩展属性 (1)是否开启自动轮播的功能. (2)指示器的图形样式,一

  • 无限循环轮播图之运动框架(原生JS实现)

    封装运动框架 function getStyle(obj,name){ if(obj.currentStyle){ return obj.currentStyle[name]; }else{ return getComputedStyle(obj,false)[name]; } } function move(obj,json,options){ var options=options || {}; var duration=options.duration || 800; var easing

  • Android ViewPager实现无限循环轮播广告位Banner效果

    现在一些app通常会在头部放一个广告位,底部放置一行小圆圈指示器,指示广告位当前的页码,轮播展示一些图片,这些图片来自于网络.这个广告位banner是典型的android ViewPager实现,但是如果自己实现这样的ViewPager,要解决一系列琐碎的问题,比如: (1)这个广告位ViewPager要支持无限循环轮播,例如,有3张图片,A,B,C,当用户滑到最后C时候再滑就要滑到A,反之亦然. (2)ViewPager要实现自动播放,比如每个若干秒如2秒,自动切换播放到下一张图片. (3)通

  • iOS使用UIScrollView实现无限循环轮播图效果

    本文实例为大家分享了iOS使用UIScrollView实现无限循环轮播图的具体代码,供大家参考,具体内容如下 代码: // // ViewController.m // 无限轮播 // // Created by limin on 17/8/23. // Copyright © 2017年 none. All rights reserved. // #import "ViewController.h" @interface ViewController ()<UIScrollVi

  • iOS实现无限循环轮播图效果

    本文实例为大家分享了iOS实现无限循环轮播图的具体代码,供大家参考,具体内容如下 轮播图基础控件,左滑右滑都能无限循环 预览 思路 (1)在第一张左边加一张最后一张的图片,往左滑到边缘结束后计算偏移量迅速定位成最后一张 #pragma mark - pagecontrol事件 // 这个是点击小圆点条进行切换,到边不能循环 - (void)pageControlTouched { // 点击的时候停止计时 [self.kvTimer setFireDate:[NSDate distantFutu

  • Android Viewpager实现无限循环轮播图

    在网上找了很多viewpager实现图片轮播的,但是大多数通过以下方式在PagerAdapter的getCount()返回一个无限大的数,来实现 伪无限 @Override public int getCount() { return Integer.MAX_VALUE;//返回一个无限大的值,可以 无限循环 } 虽然通过这种方式是能达到效果,但是从严格意义上来说并不是真正的无限. 假如有五张轮播图 item的编号为(0,1,2,3,4) 要想实现 无限循环  我们在这五张的头部和尾部各加一张即

  • 原生js实现无限循环轮播图效果

    知识要点 1.实现无限循环的原理: 以偏移的距离来判断是否跳回第一张和最后一张 也可以利用循环判断图片的当前索引值 var newLeft=parseInt(list.style.left)+offset;//当前的偏移量+下一次的偏移量=新的偏移量 list.style.left=newLeft+"px";//当前的偏移值=新的偏移值 //以偏移的距离来判断是否跳回第一张和最后一张 if(newLeft>-600){ list.style.left=-3000+"px

  • 一行iOS代码实现图片无限轮播器

    最近一直在找实现图片无限轮播的方法,在网上也看了不少方法,大都不太合适,最终看到某IT培训公司一位讲师用 UICollectionView:一行代码实现图片无限轮播器的方法,当然想一行代码实现轮播功能,前期还是有一些工作要做.下面就把这个方法分享给大家! 一.图片无限轮播实现效果图: 图片无限轮播.gif 二.实现原理与分析: 假设有三张图片0.1.2,想要实现无限轮播,我们可以将UICollectionView的cell个数设为图片的个数 x 3,也就是把三张图片重复添加到9个cell中,可以

随机推荐