IOS開發中如何解決TableView中圖片延時載入

來源:互聯網
上載者:User

標籤:

經常我們會用tableView顯示很多條目, 有時候需要顯示圖片, 但是一次從伺服器上取來所有圖片對使用者來浪費流量, 對伺服器也是負擔.最好是按需載入,即當該使用者要瀏覽該條目時再去載入它的圖片。

  - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath    {        UIImage *image = [self getImageForCellAtIndexPath:indexPath];  //從網上取得圖片        [cell.imageView setImage:image];    } 

  這雖然解決了延時載入的問題, 但當網速很慢, 或者圖片很大時(假設,雖然一般cell中的圖很小),你會發現程式可能會失去對使用者的響應.

  原因是

  UIImage *image = [self getImageForCellAtIndexPath:indexPath];  

  這個方法可能要花費大量的時間,主線程要處理這個method.

  所以失去了對使用者的響應.

所以需要做如下改寫:

  - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath    {        [self  performSelectorInBackground:@selector(updateImageForCellAtIndexPath:) ];    }   - (void)updateImageForCellAtIndexPath:(NSIndexPath *)indexPath    {            @autoReleasePool{       UIImage *image = [self getImageForCellAtIndexPath:indexPath];        UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath];        [cell.imageView performSelectorOnMainThread:@selector(setImage:) withObject:image waitUntilDone:NO];      }   } 

 

IOS開發中如何解決TableView中圖片延時載入

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.