我创建了一个表格视图控制器和自定义单元格。我创建了一个新的 tableviewCell 文件,其中包含自定义单元格中标签的出口。
我已经在 tableviewController 中导入了 tableviewcell 类,并尝试通过以下代码将数组中的值分配给单元格:
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier ];
}
cell.name.text= [data objectAtIndex:indexPath.row];
cell.name -----------(tableviewcell类中的uilabel名称不显示,即使在帮助中也不存在!,我不知道为什么)
下面的代码通过标记标签来工作
// Configure the cell...
// UILabel *label = (UILabel *)[cell viewWithTag:111];
// label.text= [data objectAtIndex:indexPath.row];
我的问题是如何使插座部分在没有标记的情况下工作,为什么 uilabel 没有显示在 tableviewCONtroller 中?
请帮帮我。我将非常感谢您的帮助。
提前致谢。