NSCoderを使用する場合、UITableviewのカスタムテーブルビューセルラベルをどこに追加しますか?私はすでにUITableViewCellクラスを作成し、すべてをInterfaceBuilderに接続しました。
交換しようとしまし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;
}