你真的瞭解UITableViewCell重用嗎?,uitableviewcell重用
一:首先查看一下關於UITableViewCell重用的定義
- (nullable __kindof UITableViewCell *)dequeueReusableCellWithIdentifier:(NSString *)identifier; - (__kindof UITableViewCell *)dequeueReusableCellWithIdentifier:(NSString *)identifier forIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(6_0);
在tableview建立的時候,會建立一個複用池(reuse pool).這個複用池可能是一個隊列,或者是一個鏈表,儲存著當前的Cell.pool中的對象的複用標識符就是reuseIdentifier,標識著不同的種類的cell.所以調用dequeueReusableCellWithIdentifier:方法擷取cell.從pool中取出來的cell都是tableview展示的原型.無論之前有什麼狀態,全部都要設定一遍.
在UITableView建立同時,會建立一個空的複用池.之後UITableView在內部維護這個複用池.一般情況下,有兩種用法,一種是在取出一個空的cell的時候再建立一個.一種是預先註冊cell.之後再直接從複用池取出來用,不需要初始化.
第一種方法:
- (nullable __kindof UITableViewCell *)dequeueReusableCellWithIdentifier:(NSString *)identifier;
UITableview第一次執行tableView:cellForRowAtIndexPath:.當前複用池為空白.dequeueReusableCellWithIdentifier調用中取出cell,並檢測cell是否存在.目前並不存在任何cell,於是建立一個cell,執行初始化, 並return cell.
代碼如下:
#define kInputCellReuseIdentifierPWD @"password_cell"UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kInputCellReuseIdentifierPWD];if (!cell) { cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:kInputCellReuseIdentifierPWD];}cell.textLabel.text = @"It is awesome";return cell;
上面的代碼中,你返回的cell會被UITableView添加到複用池中.第二次調用tableView:cellForRowAtIndexPath:,當前複用池中有一個cell.這時候因為UITableView上面還未填滿,而且複用池中唯一的那一個已經在使用了.所以取出來的Cell仍然是nil.於是繼續建立一個cell並返回,複用池再添加一個cell,當前複用池中cell的個數為2.假如當前tableview只能容納5個cell.那麼在滾動到第6個cell時,從tableview的複用池取出來的cell將會是第0行的那個cell.以此類推,當滾動到第7行時,會從複用池取出來第1行的那個cell. 另外,此時不再繼續往複用池添加新的cell.
第二種方法:
- (__kindof UITableViewCell *)dequeueReusableCellWithIdentifier:(NSString *)identifier forIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(6_0);
在UITableView初始化的時候,註冊一個UITableViewCell的類;不用再做空判斷;
[tableView registerClass:[BLSProjectMoneyCompleteCell class] forCellWithReuseIdentifier:NSStringFromClass([BLSProjectMoneyCompleteCell class])];
使用此方法之後,就不用再判斷取出來的cell是否為空白,因為取出來的cell必定存在.調用dequeueReusableCellWithIdentifier:方法時,會先判斷當前複用池時候有可用複用cell.如果沒有,tableview會在內部幫我們建立一個cell,其他的跟方法一一樣
BLSProjectMoneyCompleteCell *cell = [tableView dequeueReusableCellWithIdentifier:NSStringFromClass([BLSProjectMoneyCompleteCell class])];
二:UITableViewCell重用時引發的問題
UITableView中的cell可以有很多,一般會通過重用cell來達到節省記憶體的目的:通過為每個cell指定一個重用標識符(reuseIdentifier),即指定了儲存格的種類,當cell滾出螢幕時,會將滾出螢幕的儲存格放入重用的queue中,當某個未在螢幕上的儲存格要顯示的時候,就從這個queue中取出儲存格進行重用。
但對於多變的自訂cell,有時這種重用機制會出錯。比如,當一個cell含有一個UITextField的子類並被放在重用queue中以待重用,這時如果一個未包含任何子視圖的cell要顯示在螢幕上,就會取出並使用這個重用的cell顯示在無任何子視圖的cell中,這時候就會出錯。
方法一:- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; // UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; //改為以下的方法 UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath]; //根據indexPath準確地取出一行,而不是從cell重用隊列中取出 if (cell == nil) { cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]; } //...其他代碼 }
將獲得cell的方法從- (UITableViewCell*)dequeueReusableCellWithIdentifier:(NSString*)identifier 換為-(UITableViewCell *)cellForRowAtIndexPath:(NSIndexPath *)indexPath;重用機制調用的就是dequeueReusableCellWithIdentifier這個方法,方法的意思就是“出列可重用的cell”,因而只要將它換為cellForRowAtIndexPath(只從要更新的cell的那一行取出cell),就可以不使用重用機制,因而問題就可以得到解決,雖然可能會浪費一些空間。
方法二:- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { NSString *CellIdentifier = [NSString stringWithFormat:@"Cell%d%d", [indexPath section], [indexPath row]];//以indexPath來唯一確定cell UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; //出列可重用的cell if (cell == nil) { cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]; } //...其他代碼 }
通過為每個cell指定不同的重用標識符(reuseIdentifier)來解決。重用機制是根據相同的標識符來重用cell的,標識符不同的cell不能彼此重用。於是我們將每個cell的標識符都設定為不同,就可以避免不同cell重用的問題了。
方法三:- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; //出列可重用的cell if (cell == nil) { cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]; } else { //刪除cell的所有子視圖 while ([cell.contentView.subviews lastObject] != nil) { [(UIView*)[cell.contentView.subviews lastObject] removeFromSuperview]; } } //...其他代碼 }
刪除重用cell的所有子視圖;這個方法是通過刪除重用的cell的所有子視圖,從而得到一個沒有特殊格式的cell,供其他cell重用。考慮到記憶體問題,cell少得時候可以每個都添加標識符,當cell重用較多時,考慮記憶體問題,建議用刪除cell的所有子視圖方法(做視頻播放的時候).
三: 有時Assertion failure in dequeueReusableCellWithIdentifier:forIndexPath: 閃退問題
在先前做的分組列表中,兩組的Cell是不一樣樣式,兩組分別運用如下的代碼(也有在初始化註冊Cell),在IOS9以下會閃退
static NSString *CellIdentifier = @"Cell";UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
後來修改成:
static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell==nil) { cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier]; }