iOS分页图片轮播器

在项目中用到了分页的图片轮播器,这里就分享给需要的小伙伴们把(那个图片的路径只能是网路径,如果要加载本地的,可以先转化为url,再转化为string哦,还有创建的方式用initwithframe的形式哦)
.h文件

//
//  ViewController.h
//
//  Created by JY on 2017/4/20.
//  Copyright © 2017年 JY. All rights reserved.
//
#import <UIKit/UIKit.h>

typedef void (^scrollViewSelectBlock)(NSInteger index);

@interface ImageScrollView : UIView

/** 图片路径数组 **/
@property (strong, nonatomic) NSArray *pics;
/** pageControl 颜色 **/
@property (strong, nonatomic) UIColor *pageColor;
@property (strong, nonatomic) UIColor *pageSelColor;
@property (nonatomic, copy) scrollViewSelectBlock imgViewSelectBlock; // 图片点击事件
- (void)returnIndex:(scrollViewSelectBlock)block; //代码块回调

/** 赋值以后,调用此方法刷新视图 **/
- (void) reloadView;

@end

.m头文件

//
//  ViewController.h
//
//  Created by JY on 2017/4/20.
//  Copyright © 2017年 JY. All rights reserved.
//

#import "ImageScrollView.h"
#import <CommonCrypto/CommonDigest.h>

@interface ImageScrollView()<UIScrollViewDelegate>

@property (retain, nonatomic) UIScrollView * imgScrollView;//图片的滚轮
@property (strong, nonatomic) UIPageControl * pageControl;//图片的页码
@property (retain, nonatomic) NSTimer * time;//定时滚动图片
@property (assign, nonatomic) NSInteger curIndex;//当前位置

@end

@implementation ImageScrollView

-(instancetype)initWithFrame:(CGRect)frame {
    self = [super initWithFrame:frame];
    if (self) {
        UIView *line = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 1, 1)];
        line.backgroundColor = [UIColor clearColor];
        [self addSubview:line]; //UIScrollView(包括其子类),第一个添加到控制器的视图上才会预留空白,添加这个视图,取消留白
        _imgScrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, frame.size.width, frame.size.height)];
        _imgScrollView.delegate = self;
        _imgScrollView.pagingEnabled = YES;
        _imgScrollView.bounces = YES;
        _imgScrollView.showsHorizontalScrollIndicator = NO;
        _imgScrollView.showsVerticalScrollIndicator = NO;
        _pageControl = [[UIPageControl alloc] initWithFrame:CGRectMake(frame.size.width * 0.75, frame.size.height - 25, frame.size.width * 0.2, 25)];
        _pageControl.pageIndicatorTintColor = [UIColor groupTableViewBackgroundColor];
        _pageControl.currentPageIndicatorTintColor = [UIColor whiteColor];
        [self addSubview:_imgScrollView];
        [self addSubview:_pageControl];
        _curIndex = 0;
    }
    return self;
}

-(void)reloadView {
    if (self.pics.count == 0) {
        return;
    }
    CGFloat imgWidth = _imgScrollView.frame.size.width * (self.pics.count + (self.pics.count == 1 ? 0 : 1));
    _imgScrollView.contentSize = CGSizeMake(imgWidth, 0);
    //添加图片
    for (int i = 0; i <= (self.pics.count == 1 ? self.pics.count - 1 : self.pics.count); i++) {
        UIImageView *imageView = [UIImageView new];
        imageView.contentMode = UIViewContentModeScaleAspectFill;
        imageView.clipsToBounds = YES;
        NSString *urlStr = @"";
        if (i == 0) {
            urlStr = self.pics[self.pics.count - 1];
        }else {
            urlStr = self.pics[i - 1];
        }
        [self loadImage:urlStr imageView:imageView];
        [self setVFrame:i imageView:imageView];
        [_imgScrollView addSubview:imageView];
    }
    //初始化scrollView的滚动位置
    _imgScrollView.contentOffset = CGPointMake((self.pics.count == 1 ? 0 : self.imgScrollView.frame.size.width), 0);
    //pageController的个数
    _pageControl.numberOfPages = self.pics.count;
    //添加点击手势
    UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(clickImgView:)];
    [_imgScrollView addGestureRecognizer:tap];
    //添加计时器
    [self addTimer];
}

- (void)setBttonFrame:(int)index withButton:(UIButton *)sender{
    sender.frame = CGRectMake(self.frame.size.width * index, 0, self.frame.size.width, self.frame.size.height);
}

- (void)clickImgView:(UIGestureRecognizer *)sender {
    self.imgViewSelectBlock(_curIndex);
}
- (void)returnIndex:(scrollViewSelectBlock)block{
    self.imgViewSelectBlock = block;
}

- (void)setVFrame:(int)index imageView:(UIImageView *)image{
    image.frame = CGRectMake(self.frame.size.width * index, 0, self.frame.size.width, self.frame.size.height);
}


- (void)nextImage{
    if (_curIndex == self.pics.count - 1) {
        self.pageControl.currentPage = 0;
        _curIndex = 0;
    }else {
        self.pageControl.currentPage++;
        _curIndex++;
    }
    CGFloat x = (_curIndex + 1) * self.imgScrollView.frame.size.width;
    [UIView animateWithDuration:0.5 animations:^{
        _imgScrollView.contentOffset = CGPointMake(x, 0);
    } completion:^(BOOL finished) {
        if (finished && _curIndex == self.pics.count - 1) {
            _imgScrollView.contentOffset = CGPointMake(0, 0);
        }
    }];
}

- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView{
    [self.time invalidate]; //停止计时器
    self.time = nil;
}

- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate{
    [self addTimer];
}

- (void)scrollViewDidScroll:(UIScrollView *)scrollView{
    if (self.pics.count == 1) {
        return;
    }
    if (scrollView.contentOffset.x > self.pics.count * scrollView.frame.size.width) {
        _imgScrollView.contentOffset = CGPointMake(0, 0);
    }else if (scrollView.contentOffset.x < 0) {
        _imgScrollView.contentOffset = CGPointMake(self.pics.count * scrollView.frame.size.width, 0);
    }
}

- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView {
    if (self.pics.count == 1) {
        return;
    }
    if (scrollView.contentOffset.x == self.pics.count * scrollView.frame.size.width) {
        _imgScrollView.contentOffset = CGPointMake(0, 0);
    }
    //索引
    for (int i = 0; i <= self.pics.count; i++) {
        if (scrollView.contentOffset.x == i * self.frame.size.width) {
            if (i == 0) {
                self.pageControl.currentPage = self.pics.count - 1;
                _curIndex = self.pics.count - 1;
            }else {
                self.pageControl.currentPage = i - 1;
                _curIndex = i - 1;
            }
        }
    }
}

- (void)addTimer{
    if (self.pics.count != 1) {
        self.time = [NSTimer scheduledTimerWithTimeInterval:3.0 target:self selector:@selector(nextImage) userInfo:nil repeats:YES];
    }
}

- (void) loadImage:(NSString *)urlStr imageView:(UIImageView *)imgView {
    imgView.layer.borderWidth = 0.3;
    imgView.layer.borderColor = [UIColor groupTableViewBackgroundColor].CGColor;
    NSURL *url = [NSURL URLWithString:urlStr];
    if (url == nil) {
        return;
    }
    dispatch_queue_t queue =dispatch_queue_create("loadImage",NULL);
    dispatch_async(queue, ^{
        if ([self getImageWithName:[self md5:urlStr]] != nil) {
            dispatch_sync(dispatch_get_main_queue(), ^{
                imgView.image = [self getImageWithName:[self md5:urlStr]];
            });
        }else {
            NSData *resultData = [NSData dataWithContentsOfURL:url];
            UIImage *img = [UIImage imageWithData:resultData];
            if (img != nil) {
                dispatch_sync(dispatch_get_main_queue(), ^{
                    imgView.image = img;
                    [self saveImage:img withName:[self md5:urlStr]];
                });
            }
        }
    });
}

- (void) saveImage:(UIImage *)currentImage withName:(NSString *)imageName
{
    NSData * UIImageJPEGRepresentation (UIImage *image, CGFloat compressionQuality);
    NSData *imageData = UIImageJPEGRepresentation(currentImage, 0.5);
    // 获取沙盒目录
    NSString *fullPath = [[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"] stringByAppendingPathComponent:imageName];
    // 将图片写入文件
    [imageData writeToFile:fullPath atomically:NO];
}

- (UIImage *) getImageWithName:(NSString *)imageName{
    NSString *fullPath = [[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"] stringByAppendingPathComponent:imageName];
    UIImage *savedImage = [[UIImage alloc] initWithContentsOfFile:fullPath];
    return savedImage;
}

- (NSString *) md5:(NSString *)str
{
    const char *cStr = [str UTF8String];
    unsigned char result[CC_MD5_DIGEST_LENGTH];
    CC_MD5( cStr, strlen(cStr), result );
    return [NSString stringWithFormat:
            @"%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X",
            result[0], result[1], result[2], result[3],
            result[4], result[5], result[6], result[7],
            result[8], result[9], result[10], result[11],
            result[12], result[13], result[14], result[15]
            ];
}

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

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,800评论 25 707
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,066评论 4 62
  • 以后谁再跟我说美国学生轻松我就跟谁急! 女儿来美读书一年有余,我深切体会到了美国学生的紧张和压力,只是不是坐在教室...
    午后窗台的猫阅读 147评论 0 0
  • 午后,做了个梦 梦里有你,南城 你不曾挽留过白雪的足迹,却也赋予我一场绚丽的青春 我的故事,你给起的开头 我痴痴念...
    特傲慢的奥特曼阅读 312评论 2 0