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

tableView   cell 复用 第一种

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

标签:tableview   cell 复用



 第一种方法
    static NSString * iden = @"dd";
    TableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:iden];
    if (!cell) {
        cell = [[TableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:iden];
     }


return cell ;

tableView   cell 复用 第一种

标签:tableview   cell 复用

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

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