En utilisant le code suivant, j'obtiens le text.label mais pas le detailTextLabel.text. Le NSLog s'affiche correctement.
cell.textLabel.text = [eventLabels objectAtIndex:indexPath.row];
cell.detailTextLabel.text = [eventFields objectAtIndex:indexPath.row]];
NSLog(@"%@", [eventFields objectAtIndex:indexPath.row]);
J'ai aussi essayé...
cell.detailTextLabel.text = [NSString stringWithFormat:@"%@", [eventFields objectAtIndex:indexPath.row]];
Je n'ai jamais eu de problèmes de ce type auparavant. Avez-vous des suggestions ?
John