快速提问。我正在尝试在原型单元格中添加另一个单元格。我添加了行“cell.textLabel.text = person.firstname;” 但不要在单元格上得到任何东西。有人可以帮忙吗。
谢谢
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Persons Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
// Configure the cell...
Person *person = [self.fetchedResultsController objectAtIndexPath:indexPath];
NSString *fullname = [NSString stringWithFormat:@"%@, %@", person.surname, person.firstname];
cell.textLabel.text = fullname;
cell.detailTextLabel.text = person.inEvent.name;
cell.textLabel.text = person.firstname;
return cell;
}