xib下这种方式创建cell

  这种方法在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];
    }
原文地址:https://www.cnblogs.com/tian-sun/p/5020008.html