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

xib下这种方式创建cell

时间:2015-12-04 20:32:18      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:

  这种方法在iOS5.0之前是不能够创建成功的.
  MEConvertListTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MEConvertListTableViewCell" forIndexPath:indexPath];
 
static NSString *CellIdentifier = @"MEVedioSortTableViewCell";
    MEVedioSortTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[NSBundle mainBundle] loadNibNamed:@"MEVedioSortTableViewCell" owner:nil options:nil] objectAtIndex:0];
    }

xib下这种方式创建cell

标签:

原文地址:http://www.cnblogs.com/tian-sun/p/5020008.html

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