iOS UITableView的cell重用標識

轉自   http://www.2cto.com/kf/201308/238449.htmlhtml

 

UITableView繼承自UIScrollview,是蘋果爲咱們封裝好的一個基於scroll的控件。上面主要是一個個的 UITableViewCell,可讓UITableViewCell響應一些點擊事件,也能夠在UITableViewCell中加入 UITextField或者UITextView等子視圖,使得能夠在cell上進行文字編輯。ide


UITableView中的cell能夠有不少,通常會經過重用cell來達到節省內存的目的:經過爲每一個cell指定一個重用標識符 (reuseIdentifier),即指定了單元格的種類,當cell滾出屏幕時,會將滾出屏幕的單元格放入重用的queue中,當某個未在屏幕上的單 元格要顯示的時候,就從這個queue中取出單元格進行重用。post

但對於多變的自定義cell,有時這種重用機制會出錯。好比,當一個cell含有一個UITextField的子類並被放在重用queue中以待重用,這 時若是一個未包含任何子視圖的cell要顯示在屏幕上,就會取出並使用這個重用的cell顯示在無任何子視圖的cell中,這時候就會出錯。orm

解決方法:htm

方法1 將得到cell的方法從- (UITableViewCell*)dequeueReusableCellWithIdentifier: (NSString*)identifier 換爲-(UITableViewCell *)cellForRowAtIndexPath:(NSIndexPath *)indexPathblog

重用機制調用的就是dequeueReusableCellWithIdentifier這個方法,方法的意思就是「出列可重用的cell」,於是只要將 它換爲cellForRowAtIndexPath(只從要更新的cell的那一行取出cell),就能夠不使用重用機制,於是問題就能夠獲得解決,雖然 可能會浪費一些空間。繼承

示例代碼:隊列


[plain]
- (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];
    }
     //...其餘代碼                              
}事件

- (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];
    }
     //...其餘代碼                             
}內存

 

 

 

方法2 經過爲每一個cell指定不一樣的重用標識符(reuseIdentifier)來解決。
重用機制是根據相同的標識符來重用cell的,標識符不一樣的cell不能彼此重用。因而咱們將每一個cell的標識符都設置爲不一樣,就能夠避免不一樣cell重用的問題了。

示例代碼:


[plain]
- (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];
    }
    //...其餘代碼
}

- (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];
    }
    //...其餘代碼
}

方法3 刪除重用cell的全部子視圖

這個方法是經過刪除重用的cell的全部子視圖,從而獲得一個沒有特殊格式的cell,供其餘cell重用。

示例代碼:

[plain]- (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];        }    }    //...其餘代碼}

相關文章
相關標籤/搜索