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

uitableview 两种设置重用cell的方式

时间:2015-06-26 11:07:28      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:

1.

a.在设置tableview属性的地方加上一句 [self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"identifier"];

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

     UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier forIndexPath:indexPath];//因为上面设置了重用的相关属性,此处可直接通过重用字符串得到可重用的cell,此方法只适用于ios6.0及以上.

......

    return cell;

}

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

    static NSString *identifier = @"cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];

   if (cell == nil) {

        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];

    }

    // Configure the cell...

    return cell;

}

uitableview 两种设置重用cell的方式

标签:

原文地址:http://blog.csdn.net/gorgeous_xie/article/details/46646323

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