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

cell的循环使用

时间:2014-12-11 22:13:12      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   sp   div   log   bs   as   

cell的循环利用:(对cell的简单优化)

1.创建一个标示(Identifier),用于区分缓存池里的不同cell。

2.去缓存池里拿自己对应的cell,用到dequeueReusableCellWithIdentifier方法。

3.如果没有想要的cell,就去创建新的cell。

    static NSString *Identifier      = @"Identifier";
    UITableViewCell *cell     = [tableView dequeueReusableCellWithIdentifier:Identifier];
    if (cell == nil) {
        cell     = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:Identifier];
    }

 

cell的循环使用

标签:style   blog   color   使用   sp   div   log   bs   as   

原文地址:http://www.cnblogs.com/daojiao/p/4158520.html

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