It is not possible to display all the data of one person in one cell, difficulties with indices: (The result is "Unknown" "Sans", but it should be "Unknown" "Persona"
// Псевдо таблица NSArray *person1,*person2; person1 = [NSArray arrayWithObjects:@"Неизвестная",@"персона", nil]; person2 = [NSArray arrayWithObjects:@"Санса",@"Старк", nil]; persons = [NSArray arrayWithObjects:person1, person2, nil]; Output code:
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(nonnull NSIndexPath *)indexPath{ UITableViewCell *c; c = [tableView dequeueReusableCellWithIdentifier:@"Cell"]; // ячейка UILabel *firstLabel; //? if (c == nil) { c = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Hmm"]; } // Передаем выводим через тэг firstLabel = [c.contentView viewWithTag:1001]; firstLabel.text = [persons[0] objectAtIndex:indexPath.row]; UILabel *secondLabel; secondLabel = [c.contentView viewWithTag:1002]; secondLabel.text = [persons[1] objectAtIndex:indexPath.row]; return c; }
Label on the left has a tag 1001, Label on the right a tag 1002 
