クイック質問。Prototype セルに別のセルを追加しようとしています。「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;
}