这种方法在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];
}