使用 NSCoder 时,我应该在 UITableview 中的哪里添加自定义表格视图单元格标签?我已经创建了 UITableViewCell 类并将所有内容都连接到界面生成器中。
我试图替换cell.textLabel.text = oneName.name; with
cell.label.text = oneName.name;
它只是显示一个黑色方块。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
CustomCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
if (!cell) {
cell = [[CustomCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
// Configure the cell...
NSUInteger row = [indexPath row];
DrillObject *oneName = [self.addDrill objectAtIndex:row];
cell.textLabel.text = oneName.name;
return cell;
}