码迷,mamicode.com
首页 > 其他好文 > 详细

cell复用,状态改变

时间:2015-06-30 20:20:35      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *cellIdentifier = @"LeftTableViewCell";
    
    LeftTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
    
    if (cell == nil) {
        cell = [[[NSBundle mainBundle]loadNibNamed:@"LeftTableViewCell" owner:nil options:nil]lastObject];
    }else{//cell重用问题解决
        
        if (indexPath == lastIndexPath) {//点击cell的时候保存的
            cell.contentView.backgroundColor = [UIColor redColor];
        }else{
            cell.contentView.backgroundColor = [UIColor clearColor];
        }
    }
    cell.nameLabel.text = self.dataArray[indexPath.row];
    return cell;
}

 

cell复用,状态改变

标签:

原文地址:http://www.cnblogs.com/yipingios/p/4611304.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!