ios UITableViewCell重用實現分析

      爲了寫一個重載View的空間,因此今天特地網上查了查了TableViewCell的重用機制原理:ios

      首先在ios8SDK的UITableView頭文件中咱們能夠找到- (NSArray *)visibleCells,並且咱們還能夠用self.tableView.visibleCells來調用;說明在該類中建立了一個visibleCells數組,存放的應該是當前顯示的cell。另外其餘博客中有提到在該類中還建立了一個NSMutableArray* reusableTableCells,用來存放可重用的cell。有了這兩個數組咱們就不難理解UITableViewCell重用機制的原理了。數組

     舉例說明:一個頁面全屏加載TableView。共有100條數據,一屏最多顯示10個cell。spa


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{static NSString *cellIdentifier = @"CellInfo"; UITableViewCell *cellInfo = [tableView dequeueReusableCellWithIdentifier:cellIdentifier]; if (cellInfo == nil) { cellInfo = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier]; cellInfo.backgroundColor = [UIColor clearColor]; cellInfo.selectionStyle=UITableViewCellSelectionStyleNone; }
return cellInfo;
}

 

  TableView顯示之初,reusableTableCells爲空,那麼tableView dequeueReusableCellWithIdentifier:CellIdentifier返回nil。開始的cell都是經過[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]來建立,並且cellForRowAtIndexPath只是調用最大顯示cell數的次數。code

  1. 用[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]建立10次cell,並給cell指定一樣的重用標識(固然,能夠爲不一樣顯示類型的cell指定不一樣的標識)。而且10個cell所有都加入到visiableCells數組,reusableTableCells爲空。blog

  2. 向下拖動tableView,當cell1徹底移出屏幕,而且cell11(它也是alloc出來的,緣由同上)徹底顯示出來的時候。cell11加入到visiableCells,cell1移出visiableCells,cell1加入到reusableTableCells。博客

  3. 接着向下拖動tableView,由於reusableTableCells中已經有值,因此,當須要顯示新的cell,cellForRowAtIndexPath再次被調用的時候,tableView dequeueReusableCellWithIdentifier:CellIdentifier,返回cell1。cell1加入到visiableCells,cell1移出reusableTableCells;cell2移出visiableCells,cell2加入到reusableTableCells。以後再須要顯示的Cell就能夠正常重用了。it

  因此整個過程並不難理解,但須要注意正是由於這樣的緣由:配置Cell的時候必定要注意,對取出的重用的cell作從新賦值,不要遺留老數據。io

特殊狀況:table

  並非只有拖動超出屏幕的時候纔會更新reusableTableCells表。class

  1. reloadData,這種狀況比較特殊。通常是部分數據發生變化,須要從新刷新cell顯示的內容時調用。在cellForRowAtIndexPath調用中,全部cell都是重用的。我估計reloadData調用後,把visiableCells中全部cell移入reusableTableCells,visiableCells清空。cellForRowAtIndexPath調用後,再把reuse的cell從reusableTableCells取出來,放入到visiableCells。

  2. reloadRowsAtIndex,刷新指定的IndexPath。若是調用時reusableTableCells爲空,那麼cellForRowAtIndexPath調用後,是新建立cell,新的cell加入到visiableCells。老的cell移出visiableCells,加入到reusableTableCells。因而,以後的刷新就有cell作reuse了。

相關文章
相關標籤/搜索