無限輪播器2 - (CollectionView)

Layout:

.h

#import <UIKit/UIKit.h>

@interface FlowLayout : UICollectionViewFlowLayout

@end

.m

#import "FlowLayout.h"
@implementation FlowLayout

- (void)prepareLayout{
    
    [super prepareLayout];
    
    self.itemSize = self.collectionView.bounds.size;
    self.scrollDirection = UICollectionViewScrollDirectionHorizontal;
    self.sectionInset = UIEdgeInsetsMake(0, 0, 0, 0);
    self.minimumLineSpacing = 0;
    self.minimumInteritemSpacing = 0;
    self.collectionView.showsVerticalScrollIndicator = NO;
    self.collectionView.showsHorizontalScrollIndicator = NO;
    self.collectionView.bounces = NO;
    self.collectionView.pagingEnabled = YES;
    
}

@end

CollectionView

.h

#import <UIKit/UIKit.h>

@interface CollectionView : UICollectionView

- (instancetype)initWithUrls:(NSArray <NSURL *>*)urls;

@end

.m

#import "CollectionView.h"
#import "CollectionViewCell.h"
#import "FlowLayout.h"

static NSString * const reuseIdentifier = @"reuseIdentifier";

@interface CollectionView () <UICollectionViewDataSource,UICollectionViewDelegate>

@end

@implementation CollectionView{
    
    NSArray <NSURL *>*_urlArray;
}

- (instancetype)initWithUrls:(NSArray <NSURL *>*)urls{
    self = [super initWithFrame:CGRectZero collectionViewLayout:[[FlowLayout alloc]init]];
    if (self) {
        _urlArray = urls;
        
        [self registerClass:[CollectionViewCell class] forCellWithReuseIdentifier:reuseIdentifier];
        self.dataSource = self;
        self.delegate = self;
        
        dispatch_async(dispatch_get_main_queue(), ^{
            
            NSIndexPath *indexPath = [NSIndexPath indexPathForItem:_urlArray.count inSection:0];
            [self scrollToItemAtIndexPath:indexPath atScrollPosition:0 animated:NO];
        });
        
        
    }
    return self;
}


#pragma mark --UICollectionViewDataSource

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
    
    return _urlArray.count * 2;
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
    
    CollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:reuseIdentifier forIndexPath:indexPath];

    cell.url = _urlArray[indexPath.item % _urlArray.count];
    
    return cell;
}

- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{
    
    CGFloat contentOffset = scrollView.contentOffset.x;
    
    NSInteger currentImg = contentOffset / scrollView.bounds.size.width;
    
    
    if (currentImg == 0) {
        
        NSIndexPath *indexPath = [NSIndexPath indexPathForItem:_urlArray.count inSection:0];
        [self scrollToItemAtIndexPath:indexPath atScrollPosition:0 animated:NO];
    }
    
    if (currentImg == [self numberOfItemsInSection:0] - 1) {
        
        NSIndexPath *indexPath = [NSIndexPath indexPathForItem:_urlArray.count - 1 inSection:0];
        [self scrollToItemAtIndexPath:indexPath atScrollPosition:0 animated:NO];
    }
    
}

@end

在自定義的構造函數(shù)中,手動滾動CollectionView時,之所以使用了主隊列異步,是由于構造函數(shù)在數(shù)據(jù)源方法前執(zhí)行,使用主隊列異步,保證數(shù)據(jù)源方法執(zhí)行完畢后,再滾動CollectionView

CollectionCell

.h

#import <UIKit/UIKit.h>
#import "CollectionView.h"

@interface CollectionViewCell : UICollectionViewCell

@property (nonatomic,strong) NSURL *url;

@end

.m

#import "CollectionViewCell.h"
#import "Masonry.h"

@interface CollectionViewCell()

@property (nonatomic,strong) NSOperationQueue *queue;

@end

@implementation CollectionViewCell{
    
    UIImageView *_imageView;
}


- (instancetype)initWithFrame:(CGRect)frame{
    self = [super initWithFrame:frame];
    if (self) {
        NSLog(@"%s",__FUNCTION__);
        _imageView = [[UIImageView alloc]initWithFrame:self.bounds];
        [self.contentView addSubview:_imageView];
        
    }
    return self;
}


- (void)setUrl:(NSURL *)url{
    
    _url = url;
    
    NSBlockOperation *operation = [NSBlockOperation blockOperationWithBlock:^{
        
        NSData *data = [NSData dataWithContentsOfURL:url];
        
        UIImage *image = [UIImage imageWithData:data];
        
        dispatch_sync(dispatch_get_main_queue(), ^{
            
            _imageView.image = image;
            
        });
        
    }];
    
    [self.queue addOperation:operation];
    
    
}


- (NSOperationQueue *)queue{
    if (_queue == nil) {
        _queue = [[NSOperationQueue alloc] init];
    }
    return  _queue;
}

@end

將CollectionView分別抽取出CollectionView,Layout和Cell三個類,讓代碼的可讀性更好,當外界使用使用:

#import "ViewController.h"
#import "CollectionView.h"
#import "Masonry/Masonry.h"

@interface ViewController ()

@end

@implementation ViewController{
    NSArray *_urlArr;
}

- (void)viewDidLoad {
    [super viewDidLoad];
    
    [self loadData];
    
    self.view.backgroundColor = [UIColor whiteColor];
    
    CollectionView *collectionView = [[CollectionView alloc]initWithUrls:_urlArr];
    
    [self.view addSubview:collectionView];
    [collectionView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.left.mas_equalTo(self.view).mas_offset(20);
        make.top.mas_equalTo(self.view).mas_offset(100);
        make.right.mas_equalTo(self.view).mas_offset(-20);
        make.height.mas_equalTo(300);
    }];
    
}

- (void)loadData{
    
    NSMutableArray *mArr = [NSMutableArray array];
    
    for (int i = 0; i<3; i ++) {
        NSString *urlString = @"http://img2.duitang.com/uploads/item/201208/18/20120818150713_zarnG.jpeg";
        [mArr addObject:[NSURL URLWithString:urlString]];
    }
    
    _urlArr = mArr.copy;
}

@end
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末啊易,一起剝皮案震驚了整個濱河市吁伺,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌租谈,老刑警劉巖篮奄,帶你破解...
    沈念sama閱讀 210,914評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異割去,居然都是意外死亡窟却,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評論 2 383
  • 文/潘曉璐 我一進店門呻逆,熙熙樓的掌柜王于貴愁眉苦臉地迎上來夸赫,“玉大人,你說我怎么就攤上這事咖城〔缤龋” “怎么了?”我有些...
    開封第一講書人閱讀 156,531評論 0 345
  • 文/不壞的土叔 我叫張陵宜雀,是天一觀的道長切平。 經常有香客問我,道長辐董,這世上最難降的妖魔是什么悴品? 我笑而不...
    開封第一講書人閱讀 56,309評論 1 282
  • 正文 為了忘掉前任,我火速辦了婚禮简烘,結果婚禮上苔严,老公的妹妹穿的比我還像新娘。我一直安慰自己孤澎,他們只是感情好届氢,可當我...
    茶點故事閱讀 65,381評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著亥至,像睡著了一般悼沈。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上姐扮,一...
    開封第一講書人閱讀 49,730評論 1 289
  • 那天絮供,我揣著相機與錄音,去河邊找鬼茶敏。 笑死壤靶,一個胖子當著我的面吹牛,可吹牛的內容都是我干的惊搏。 我是一名探鬼主播贮乳,決...
    沈念sama閱讀 38,882評論 3 404
  • 文/蒼蘭香墨 我猛地睜開眼忧换,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了向拆?” 一聲冷哼從身側響起亚茬,我...
    開封第一講書人閱讀 37,643評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體糕殉,經...
    沈念sama閱讀 44,095評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,448評論 2 325
  • 正文 我和宋清朗相戀三年梢夯,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片晴圾。...
    茶點故事閱讀 38,566評論 1 339
  • 序言:一個原本活蹦亂跳的男人離奇死亡颂砸,死狀恐怖,靈堂內的尸體忽然破棺而出死姚,到底是詐尸還是另有隱情人乓,我是刑警寧澤,帶...
    沈念sama閱讀 34,253評論 4 328
  • 正文 年R本政府宣布知允,位于F島的核電站撒蟀,受9級特大地震影響叙谨,放射性物質發(fā)生泄漏温鸽。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,829評論 3 312
  • 文/蒙蒙 一手负、第九天 我趴在偏房一處隱蔽的房頂上張望涤垫。 院中可真熱鬧,春花似錦竟终、人聲如沸蝠猬。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,715評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽榆芦。三九已至,卻和暖如春喘鸟,著一層夾襖步出監(jiān)牢的瞬間匆绣,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,945評論 1 264
  • 我被黑心中介騙來泰國打工什黑, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留崎淳,地道東北人。 一個月前我還...
    沈念sama閱讀 46,248評論 2 360
  • 正文 我出身青樓愕把,卻偏偏與公主長得像拣凹,于是被迫代替她去往敵國和親森爽。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,440評論 2 348

推薦閱讀更多精彩內容