Когда я запускаю свое приложение ios, в TableView отображается только первая ячейка, затем при нажатии отображается вторая ячейка. Я хотел бы, чтобы они оба отображались одновременно, но я не могу понять это поведение.
Вот код, на мой взгляд, загрузил
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"ProductCellId";
ProductTableCell *cell =
(ProductTableCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
[[NSBundle mainBundle] loadNibNamed:@"ProductTableCell" owner:self options:nil];
cell = self.productCell;
}
Product *product = [products objectAtIndex:indexPath.row];
[cell configureForProduct:product];
return cell;
}
Любая помощь будет высоко ценится!