UITableView性能優(yōu)化-中級篇

老實說,UITableView性能優(yōu)化 這個話題,最經(jīng)常遇到的還是在面試中,常見的回答例如:

  • Cell復(fù)用機制

  • Cell高度預(yù)先計算

  • 緩存Cell高度

  • 圓角切割

  • 等等. . .

image

進(jìn)階篇

最近遇到一個需求,對tableView有中級優(yōu)化需求

  1. 要求 tableView 滾動的時候,滾動到哪行,哪行的圖片才加載并顯示,滾動過程中圖片不加載顯示;

  2. 頁面跳轉(zhuǎn)的時候,取消當(dāng)前頁面的圖片加載請求;

以最常見的cell加載webImage為例:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];    if (!cell) {        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];    }    DemoModel *model = self.datas[indexPath.row];    cell.textLabel.text = model.text;    [cell.imageView setYy_imageURL:[NSURL URLWithString:model.user.avatar_large]];    return cell;}
解釋下cell的復(fù)用機制:
  • 如果cell沒進(jìn)入到界面中(還不可見),不會調(diào)用- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath去渲染cell,在cell中如果設(shè)置loadImage,不會調(diào)用;

  • 而當(dāng)cell進(jìn)去界面中的時候,再進(jìn)行cell渲染(無論是init還是從復(fù)用池中取)

解釋下YYWebImage機制:
  • 內(nèi)部的YYCache會對圖片進(jìn)行數(shù)據(jù)緩存,以key:value的形式,這里的key = imageUrl,value = 下載的image圖片

  • 讀取的時候判斷YYCache中是否有該url,有的話,直接讀取緩存圖片數(shù)據(jù),沒有的話,走圖片下載邏輯,并緩存圖片

問題所在:

如上設(shè)置,如果我們cell一行有20行,頁面啟動的時候,直接滑動到最底部,20個cell都進(jìn)入過了界面,- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 被調(diào)用了20次,不符合 需求1的要求

解決辦法:

  1. cell每次被渲染時,判斷當(dāng)前tableView是否處于滾動狀態(tài),是的話,不加載圖片;

  2. cell 滾動結(jié)束的時候,獲取當(dāng)前界面內(nèi)可見的所有cell

  3. 在2的基礎(chǔ)之上,讓所有的cell請求圖片數(shù)據(jù),并顯示出來

  • 步驟1:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];    if (!cell) {        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];    }    DemoModel *model = self.datas[indexPath.row];    cell.textLabel.text = model.text;    //不在直接讓cell.imageView loadYYWebImage    if (model.iconImage) {        cell.imageView.image = model.iconImage;    }else{        cell.imageView.image = [UIImage imageNamed:@"placeholder"];        //核心判斷:tableView非滾動狀態(tài)下,才進(jìn)行圖片下載并渲染        if (!tableView.dragging && !tableView.decelerating) {            //下載圖片數(shù)據(jù) - 并緩存            [ImageDownload loadImageWithModel:model success:^{                //主線程刷新UI                dispatch_async(dispatch_get_main_queue(), ^{                    cell.imageView.image = model.iconImage;                });            }];        }}
  • 步驟2:
- (void)p_loadImage{    //拿到界面內(nèi)-所有的cell的indexpath    NSArray *visableCellIndexPaths = self.tableView.indexPathsForVisibleRows;    for (NSIndexPath *indexPath in visableCellIndexPaths) {        DemoModel *model = self.datas[indexPath.row];        if (model.iconImage) {            continue;        }        UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath];        [ImageDownload loadImageWithModel:model success:^{            //主線程刷新UI            dispatch_async(dispatch_get_main_queue(), ^{                cell.imageView.image = model.iconImage;            });        }];    }}
  • 步驟3:
//手一直在拖拽控件- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{    [self p_loadImage];}//手放開了-使用慣性-產(chǎn)生的動畫效果- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate{    if(!decelerate){        //直接停止-無動畫        [self p_loadImage];    }else{        //有慣性的-會走`scrollViewDidEndDecelerating`方法,這里不用設(shè)置    }}

dragging:returns YES if user has started scrolling. this may require some time and or distance to move to initiate dragging

可以理解為,用戶在拖拽當(dāng)前視圖滾動(手一直拉著)

deceleratingreturns:returns YES if user isn't dragging (touch up) but scroll view is still moving

可以理解為用戶手已放開,試圖是否還在滾動(是否慣性效果)

ScrollView一次拖拽的代理方法執(zhí)行流程:
image

當(dāng)前代碼生效的效果如下:

點擊查看動圖

RunLoop小操作
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];    if (!cell) {        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];    }    DemoModel *model = self.datas[indexPath.row];    cell.textLabel.text = model.text;    if (model.iconImage) {        cell.imageView.image = model.iconImage;    }else{        cell.imageView.image = [UIImage imageNamed:@"placeholder"];        /**         runloop - 滾動時候 - trackingMode,         - 默認(rèn)情況 - defaultRunLoopMode         ==> 滾動的時候,進(jìn)入`trackingMode`,defaultMode下的任務(wù)會暫停         停止?jié)L動的時候 - 進(jìn)入`defaultMode` - 繼續(xù)執(zhí)行`trackingMode`下的任務(wù) - 例如這里的loadImage         */        [self performSelector:@selector(p_loadImgeWithIndexPath:)                   withObject:indexPath                   afterDelay:0.0                      inModes:@[NSDefaultRunLoopMode]];}//下載圖片,并渲染到cell上顯示- (void)p_loadImgeWithIndexPath:(NSIndexPath *)indexPath{    DemoModel *model = self.datas[indexPath.row];    UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath];    [ImageDownload loadImageWithModel:model success:^{        //主線程刷新UI        dispatch_async(dispatch_get_main_queue(), ^{            cell.imageView.image = model.iconImage;        });    }];}

效果與demo.gif的效果一致

runloop - 兩種常用模式介紹: trackingMode && defaultRunLoopMode

  • 默認(rèn)情況 - defaultRunLoopMode
  • 滾動時候 - trackingMode
  • 滾動的時候,進(jìn)入trackingMode,導(dǎo)致defaultMode下的任務(wù)會被暫停,停止?jié)L動的時候 ==> 進(jìn)入defaultMode - 繼續(xù)執(zhí)行defaultMode下的任務(wù) - 例如這里的defaultMode

大tips:這里,如果使用RunLoop,滾動的時候雖然不執(zhí)行defaultMode,但是滾動一結(jié)束,之前cell中的p_loadImgeWithIndexPath就會全部再被調(diào)用,導(dǎo)致類似YYWebImage的效果,其實也是不滿足需求,

  • 提示會被調(diào)用的代碼如下:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{    //p_loadImgeWithIndexPath一進(jìn)入`NSDefaultRunLoopMode`就會執(zhí)行    [self performSelector:@selector(p_loadImgeWithIndexPath:)               withObject:indexPath               afterDelay:0.0                  inModes:@[NSDefaultRunLoopMode]];}

點擊查看動圖

效果如上

  • 滾動的時候不加載圖片,滾動結(jié)束加載圖片-滿足
  • 滾動結(jié)束,之前滾動過程中的cell會加載圖片 => 不滿足需求

版本回滾到Runloop之前 - git reset --hard runloop之前

解決: 需求2. 頁面跳轉(zhuǎn)的時候,取消當(dāng)前頁面的圖片加載請求;

- (void)p_loadImgeWithIndexPath:(NSIndexPath *)indexPath{    DemoModel *model = self.datas[indexPath.row];    //保存當(dāng)前正在下載的操作    ImageDownload *manager = self.imageLoadDic[indexPath];    if (!manager) {        manager = [ImageDownload new];        //開始加載-保存到當(dāng)前下載操作字典中        [self.imageLoadDic setObject:manager forKey:indexPath];    }    [manager loadImageWithModel:model success:^{        //主線程刷新UI        dispatch_async(dispatch_get_main_queue(), ^{            UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath];            cell.imageView.image = model.iconImage;        });        //加載成功-從保存的當(dāng)前下載操作字典中移除        [self.imageLoadDic removeObjectForKey:indexPath];    }];}- (void)viewWillDisappear:(BOOL)animated{    [super viewWillDisappear:animated];    NSArray *loadImageManagers = [self.imageLoadDic allValues];    //當(dāng)前圖片下載操作全部取消    [loadImageManagers makeObjectsPerformSelector:@selector(cancelLoadImage)];}@implementation ImageDownload- (void)cancelLoadImage{    [_task cancel];}@end

思路:

  1. 創(chuàng)建一個可變字典,以indexPath:manager的格式,將當(dāng)前的圖片下載操作存起來

  2. 每次下載之前,將當(dāng)前下載線程存入,下載成功后,將該線程移除

  3. 在viewWillDisappear的時候,取出當(dāng)前線程字典中的所有線程對象,遍歷進(jìn)行cancel操作,完成需求

話外篇:面試題贈送

最近網(wǎng)上各種互聯(lián)網(wǎng)公司裁員信息鋪天蓋地,甚至包括各種一線公司 ( X東 X乎 都扛不住了嗎-。-)iOS本來就是提前進(jìn)入寒冬,iOS小白們可以嘗試思考下這個問題

問:UITableView的圓角性能優(yōu)化如何實現(xiàn)

答:

  1. 讓服務(wù)器直接傳圓角圖片;

  2. 貝塞爾切割控件layer;

  3. YYWebImage為例,可以先下載圖片,再對圖片進(jìn)行圓角處理,再設(shè)置到cell上顯示

問:YYWebImage 如何設(shè)置圓角? 在下載完成的回調(diào)中?如果你在下載完成的時候再切割,此時 YYWebImage 緩存中的圖片是初始圖片,還是圓角圖片?(終于等到3了??!)

答: 如果是下載完,在回調(diào)中進(jìn)行切割圓角的處理,其實緩存的圖片是原圖,等于每次取的時候,緩存中取出來的都是矩形圖片,每次set都得做切割操作;

問: 那是否有解決辦法?

答:其實是有的,簡單來說YYWebImage 可以拆分成兩部分,默認(rèn)情況下,我們拿到的回調(diào),是走了 download && cache的流程了,這里我們多做一步,取出cache中該url路徑對應(yīng)的圖片,進(jìn)行圓角切割,再存儲到 cacha中,就能保證以后每次拿到的就都是cacha中已經(jīng)裁切好的圓角圖片

詳情可見:

NSString *path = [[UIApplication sharedApplication].cachesPath stringByAppendingPathComponent:@"weibo.avatar"];YYImageCache *cache = [[YYImageCache alloc] initWithPath:path];manager = [[YYWebImageManager alloc] initWithCache:cache queue:[YYWebImageManager sharedManager].queue];manager.sharedTransformBlock = ^(UIImage *image, NSURL *url) {    if (!image) return image;    return [image imageByRoundCornerRadius:100]; // a large value};

SDWebImage同理,它有暴露了一個方法出來,可以直接設(shè)置保存圖片到磁盤中,無需修改源碼

“winner is coming”,如果面試正好遇到以上問題的,請叫我雷鋒~
衷心希望各位iOS小伙伴門能熬過這個冬天?

Demo源碼

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容