- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell2" forIndexPath:indexPath];
cell.textLabel.text = model1[indexPath.row];
// Configure the cell...
return cell;
}
Значения берутся только из model1, я выше скопировал из вашего проекта метод конфигурации ячейки. Нет обращений к другим массивам.