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

tableView   cell 复用 第二种

时间:2014-09-20 02:25:06      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:tableview   cell 复用



cell 第二种方法 (1)
static NSString * ideng = @"reuse";



 cell 第二种方法 (2)
        注册复用cell (cell 的类型和标识符) (可以同时注册多个cell , 方法相同 , 一定要保证标识符是不一样的)
       注册到了tableView的复用池
        [self.tableView registerClass:[TableViewCell class] forCellReuseIdentifier:ideng];





- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
 
   

cell 第二种方法 (3)

    用复用池中找cell (1.cell的标识符 , 2. indexPath:决定系统用不用给你创建cell , 不用创建的话 , 复用之前的cell )
    
 

    TableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:ideng forIndexPath:indexPath];
        

    return cell;
    
}


tableView   cell 复用 第二种

标签:tableview   cell 复用

原文地址:http://qccccc.blog.51cto.com/6004423/1555345

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