天天看點

iOS開發之UICollectionViewDataSourcePrefetching

在iOS10中,蘋果為UICollectionViewCell引入了Pre-Fetching預加載機制用于提升它的性能。主要引入了一個新的資料源協定

UICollectionViewDataSourcePrefetching

,包含兩個方法:

@protocol UICollectionViewDataSourcePrefetching <NSObject>
@required
// 預加載資料
- (void)collectionView:(UICollectionView *)collectionView prefetchItemsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths NS_AVAILABLE_IOS(10_0);
@optional
// 取消提前加載資料
- (void)collectionView:(UICollectionView *)collectionView cancelPrefetchingForItemsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths  NS_AVAILABLE_IOS(10_0);
@end
           

網上搜了一大圈,講述原理的(翻譯文檔)的文章很多,有幹貨的Demo很少,于是乎自己摸索了一下,寫了一個簡單的案例,在此記錄并分享一下。

運作環境:Xcode 8.2.1 + iOS 10.2

核心步驟:

1、遵從 UICollectionViewDataSourcePrefetching 協定

2、實作 collectionView:prefetchItemsAtIndexPaths 方法和collectionView:cancelPrefetchItemsAtIndexPaths 方法(可選)

3、将第1步中遵從協定的類設定為 UICollectionView 的 prefetchDataSource 屬性

實作

一、建立UICollectionViewFlowLayout

自己寫一個類繼承自UICollectionViewFlowLayout

@implementation MyCollectionViewFlowLayout

-(void)prepareLayout{

    self.minimumLineSpacing = 1;//垂直間距
    self.minimumInteritemSpacing = 0;//水準間距
    self.sectionInset = UIEdgeInsetsMake(0, 0, 8, 0);//分組間距

}
@end
           

二、用XIB定義一個

裡面就一個UIImageView,然後拽線設定一個IBOutlet

iOS開發之UICollectionViewDataSourcePrefetching

UICollectionViewCell.png

@property (weak, nonatomic) IBOutlet UIImageView *imgView;
           

三、控制器

注釋很詳細

#import "ViewController.h"
#import "MyCollectionViewFlowLayout.h"
#import "ImgCollectionViewCell.h"

#define ScreenW [UIScreen mainScreen].bounds.size.width
//重用辨別
static NSString *cellId = @"imgCell";
//遵守協定
@interface ViewController ()<UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewDataSourcePrefetching>

//下載下傳圖檔任務
@property(nonatomic, strong) NSMutableDictionary<NSURL *, dispatch_queue_t> *tasks;
//圖檔位址
@property(nonatomic, copy) NSMutableArray<NSURL *> *imgURLArray;
//下載下傳的圖檔
@property(nonatomic, copy) NSMutableDictionary<NSURL *, UIImage *> *imgs;
//UICollectionView
@property(nonatomic, weak) UICollectionView *collectionView;

@end

@implementation ViewController

//懶加載imgURLArray
-(NSMutableArray<NSURL *> *)imgURLArray{
    
    if (_imgURLArray == nil) {   
        _imgURLArray = [NSMutableArray array];    
        for (int i = 0; i < 30; i++) {
            NSURL *imgURL = [NSURL URLWithString:@"https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1494499175005&di=1d8d40ac84f4a71cb26d7bf4a5a845ec&imgtype=0&src=http%3A%2F%2Fimg10.360buyimg.com%2Fyixun_zdm%2Fjfs%2Ft2830%2F11%2F2310606472%2F165925%2F962fa94a%2F575f7664Nfd743845.jpg"];
            [_imgURLArray addObject:imgURL];            
        }
    }
    
    return _imgURLArray;    
}

//懶加載imgs
-(NSMutableDictionary<NSURL *,UIImage *> *)imgs{
    if (_imgs == nil) {        
        _imgs = [NSMutableDictionary dictionary];
    }   
    return _imgs;
}

//懶加載tasks
-(NSMutableDictionary<NSURL *,dispatch_queue_t> *)tasks{
    if (_tasks == nil) {       
        _tasks = [NSMutableDictionary dictionary];
    }   
    return _tasks;   
}


- (void)viewDidLoad {
    [super viewDidLoad];
    
    //建立UICollectionView
    //建立布局
    UICollectionViewLayout *layout = [[MyCollectionViewFlowLayout alloc]init];
    //初始化一個UICollectionView
    UICollectionView *collection = [[UICollectionView alloc]initWithFrame:[UIScreen mainScreen].bounds collectionViewLayout:layout];
    //設定背景色
    collection.backgroundColor = [UIColor groupTableViewBackgroundColor];
    //設定代理
    collection.dataSource = self;
    collection.delegate = self;
    collection.prefetchDataSource = self;
    //注冊Cell
    UINib *nib = [UINib nibWithNibName:@"ImgCollectionViewCell" bundle:nil];
    [collection registerNib:nib forCellWithReuseIdentifier:cellId];
     
    [self.view addSubview:collection];
    
    self.collectionView = collection;
    
}


-(void)loadImage:(NSIndexPath *)indexPath{
    
    NSURL *currentURL = [self.imgURLArray objectAtIndex:indexPath.row];
    dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);  
    __weak typeof(self) weakSelf = self;
    
    //異步下載下傳圖檔
    dispatch_async(queue, ^{
      
        NSData *imageData = [NSData dataWithContentsOfURL:currentURL];
        UIImage *image = [UIImage imageWithData:imageData];
        weakSelf.imgs[currentURL] = image;
        
        //更新UI   
         dispatch_async(dispatch_get_main_queue(), ^{
            
            ImgCollectionViewCell *cell = (ImgCollectionViewCell *)[weakSelf.collectionView cellForItemAtIndexPath:indexPath];
            cell.imgView.image = image;
        });
    });
    
    //為了取消任務
    self.tasks[currentURL] = queue;
    
}

#pragma mark <UICollectionViewDataSource>
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
    
    return self.imgURLArray.count;
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
     
    ImgCollectionViewCell * cell = [collectionView dequeueReusableCellWithReuseIdentifier:cellId forIndexPath:indexPath];
    
    // 擷取URL
    NSURL *imgURL = self.imgURLArray[indexPath.row];
    
    //對應的URL的圖檔已經存在
    if (self.imgs[imgURL]) {        
        cell.imgView.image = self.imgs[imgURL];
    }
    //不存在
    else{
        
        [self loadImage:indexPath];
    }
    
    return cell;
    
}


#pragma mark <UICollectionViewDelegate>
//定義每個Item 的大小
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath { 
    CGFloat W = (ScreenW - 1) / 2;    
    return CGSizeMake(W, 100);
    
}

#pragma mark <UICollectionViewDataSourcePrefetching>
- (void)collectionView:(UICollectionView *)collectionView prefetchItemsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths {
    
    for (NSIndexPath * indexPath in indexPaths) {
        
        NSURL *currentURL = [self.imgURLArray objectAtIndex:indexPath.row]; 
        //不存在就請求
        if (!self.imgs[currentURL]) {
            [self loadImage:indexPath];
        }
    }
    
}


- (void)collectionView:(UICollectionView *)collectionView cancelPrefetchingForItemsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths {
    
    for (NSIndexPath * indexPath in indexPaths){
        
        NSURL *currentURL = [self.imgURLArray objectAtIndex:indexPath.row];  
        //目前任務存在
        if (self.tasks[currentURL]) {
            dispatch_queue_t queue = self.tasks[currentURL];
            dispatch_suspend(queue);
            self.tasks[currentURL] = nil;
        }
    }
    
}

@end

           

效果

iOS開發之UICollectionViewDataSourcePrefetching

效果示範.gif

寫在後面的話

1、這個新特性仍然需要探究

2、遇到的一個坑:細心看的話可以發現我的字典是懶加載的,如果直接在

viewDidLoad

中初始化會在

weakSelf.imgs[currentURL] = image;

一行報錯,why?煩請知道的告知。

源代碼

繼續閱讀