第一种方法
static NSString * iden = @"dd";
TableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:iden];
if (!cell) {
cell = [[TableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:iden];
}
return cell ;
原文地址:http://qccccc.blog.51cto.com/6004423/1555343