Я получаю своеобразное поведение от моего UITableView
.Он загружает строки 0, 1, 2
- но когда он попадает в строку 3
, он загружает вместо нее строку 4
, а затем для строки 4
он снова загружает строку 0
, поэтому это выглядит так:
Строки в таблице:
0
1
2
4
0
Это, очевидно, должно идти 0, 1, 2, 3, 4
по порядку.Вот мой код:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSLog(@"cellForRowAtIndexPath getting called - row: %li", indexPath.row);
[self.items enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
NSLog(@"items at every cell entry: %@", [obj valueForKey:@"item"]);
}];
//UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell1" forIndexPath:indexPath];
//NSLog(@"indexPath.row: %li, %@", (long)indexPath.row, [self.items objectAtIndex:indexPath.row]);
PoolsTableViewCell *cell = (PoolsTableViewCell*)[tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
if(cell.cellLeftImageView.image == nil) {
NSInteger left = 2*indexPath.row;
NSLog(@"left: %li", (long)left);
NSObject* obj = (NSObject*)[self.items objectAtIndex:left];
cell.cellLeftViewLabel.text = [obj valueForKey:@"item"];
NSString *ImageURL = [obj valueForKey:@"downloadURL"];
NSData *imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:ImageURL]];
cell.cellLeftImageView.image = [UIImage imageWithData:imageData];
NSInteger right = (2*indexPath.row)+1;
NSLog(@"right: %li", (long)right);
if(right < [self.items count]) {
NSLog(@"inside right < self.items count conditional");
NSObject* objPlus = (NSObject*)[self.items objectAtIndex:right];
cell.cellRightViewLabel.text = [objPlus valueForKey:@"item"];
NSString *secondImageURL = [objPlus valueForKey:@"downloadURL"];
NSData *secondImageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:secondImageURL]];
cell.cellRightImageView.image = [UIImage imageWithData:secondImageData];
}
}
return cell;
}
У меня есть этот код, который регистрирует все элементы при каждом вызове cellForRowAtIndex
:
[self.items enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx,
BOOL * _Nonnull stop) {
NSLog(@"items at every cell entry: %@", [obj valueForKey:@"item"]);
}];
Я загружаю 2 элемента из self.items
в каждую строку (каждая строка имеет 2 столбца, по существу).Вывод на консоль корректен для каждого вызова cellForRowAtIndexPath
- поэтому на self.items
нельзя ссылаться не по порядку, но это так - это пример моего вывода на консоль, когда UITableView
загружается:
2019-02-02 22:01:30.121975-0500 HybridPool[1720:534623] cellForRowAtIndexPath getting called - row: 0
2019-02-02 22:01:30.122149-0500 HybridPool[1720:534623] items at ever cell entry: Table
2019-02-02 22:01:30.122263-0500 HybridPool[1720:534623] items at ever cell entry: Cord
2019-02-02 22:01:30.122373-0500 HybridPool[1720:534623] items at ever cell entry: Keys
2019-02-02 22:01:30.122645-0500 HybridPool[1720:534623] items at ever cell entry: Hshhdhdbd
2019-02-02 22:01:30.122769-0500 HybridPool[1720:534623] items at ever cell entry: Jhghhvhh
2019-02-02 22:01:30.122947-0500 HybridPool[1720:534623] items at ever cell entry: Book
2019-02-02 22:01:30.123054-0500 HybridPool[1720:534623] items at ever cell entry: Njhhnn
2019-02-02 22:01:30.123160-0500 HybridPool[1720:534623] items at ever cell entry: Tv
2019-02-02 22:01:30.123260-0500 HybridPool[1720:534623] items at ever cell entry: 9th item
2019-02-02 22:01:30.129478-0500 HybridPool[1720:534623] left: 0
2019-02-02 22:01:31.024184-0500 HybridPool[1720:534623] right: 1
2019-02-02 22:01:31.024302-0500 HybridPool[1720:534623] inside right < self.items count conditional
2019-02-02 22:01:31.719052-0500 HybridPool[1720:534623] cellForRowAtIndexPath getting called - row: 1
2019-02-02 22:01:31.719252-0500 HybridPool[1720:534623] items at ever cell entry: Table
2019-02-02 22:01:31.719374-0500 HybridPool[1720:534623] items at ever cell entry: Cord
2019-02-02 22:01:31.719481-0500 HybridPool[1720:534623] items at ever cell entry: Keys
2019-02-02 22:01:31.719584-0500 HybridPool[1720:534623] items at ever cell entry: Hshhdhdbd
2019-02-02 22:01:31.719687-0500 HybridPool[1720:534623] items at ever cell entry: Jhghhvhh
2019-02-02 22:01:31.719785-0500 HybridPool[1720:534623] items at ever cell entry: Book
2019-02-02 22:01:31.719884-0500 HybridPool[1720:534623] items at ever cell entry: Njhhnn
2019-02-02 22:01:31.720048-0500 HybridPool[1720:534623] items at ever cell entry: Tv
2019-02-02 22:01:31.720170-0500 HybridPool[1720:534623] items at ever cell entry: 9th item
2019-02-02 22:01:31.724875-0500 HybridPool[1720:534623] left: 2
2019-02-02 22:01:32.340747-0500 HybridPool[1720:534623] right: 3
2019-02-02 22:01:32.340969-0500 HybridPool[1720:534623] inside right < self.items count conditional
2019-02-02 22:01:32.776360-0500 HybridPool[1720:534623] cellForRowAtIndexPath getting called - row: 2
2019-02-02 22:01:32.776572-0500 HybridPool[1720:534623] items at ever cell entry: Table
2019-02-02 22:01:32.776685-0500 HybridPool[1720:534623] items at ever cell entry: Cord
2019-02-02 22:01:32.776877-0500 HybridPool[1720:534623] items at ever cell entry: Keys
2019-02-02 22:01:32.777113-0500 HybridPool[1720:534623] items at ever cell entry: Hshhdhdbd
2019-02-02 22:01:32.777244-0500 HybridPool[1720:534623] items at ever cell entry: Jhghhvhh
2019-02-02 22:01:32.777344-0500 HybridPool[1720:534623] items at ever cell entry: Book
2019-02-02 22:01:32.777443-0500 HybridPool[1720:534623] items at ever cell entry: Njhhnn
2019-02-02 22:01:32.777542-0500 HybridPool[1720:534623] items at ever cell entry: Tv
2019-02-02 22:01:32.777641-0500 HybridPool[1720:534623] items at ever cell entry: 9th item
2019-02-02 22:01:32.782148-0500 HybridPool[1720:534623] left: 4
2019-02-02 22:01:33.383439-0500 HybridPool[1720:534623] right: 5
2019-02-02 22:01:33.383649-0500 HybridPool[1720:534623] inside right < self.items count conditional
2019-02-02 22:01:34.534761-0500 HybridPool[1720:534623] cellForRowAtIndexPath getting called - row: 3
2019-02-02 22:01:34.534980-0500 HybridPool[1720:534623] items at ever cell entry: Table
2019-02-02 22:01:34.535099-0500 HybridPool[1720:534623] items at ever cell entry: Cord
2019-02-02 22:01:34.535206-0500 HybridPool[1720:534623] items at ever cell entry: Keys
2019-02-02 22:01:34.535310-0500 HybridPool[1720:534623] items at ever cell entry: Hshhdhdbd
2019-02-02 22:01:34.535412-0500 HybridPool[1720:534623] items at ever cell entry: Jhghhvhh
2019-02-02 22:01:34.535666-0500 HybridPool[1720:534623] items at ever cell entry: Book
2019-02-02 22:01:34.535787-0500 HybridPool[1720:534623] items at ever cell entry: Njhhnn
2019-02-02 22:01:34.535895-0500 HybridPool[1720:534623] items at ever cell entry: Tv
2019-02-02 22:01:34.536022-0500 HybridPool[1720:534623] items at ever cell entry: 9th item
2019-02-02 22:01:34.540261-0500 HybridPool[1720:534623] left: 6
2019-02-02 22:01:35.090979-0500 HybridPool[1720:534623] right: 7
2019-02-02 22:01:35.091111-0500 HybridPool[1720:534623] inside right < self.items count conditional
2019-02-02 22:01:35.886101-0500 HybridPool[1720:534623] cellForRowAtIndexPath getting called - row: 4
2019-02-02 22:01:35.886329-0500 HybridPool[1720:534623] items at ever cell entry: Table
2019-02-02 22:01:35.886446-0500 HybridPool[1720:534623] items at ever cell entry: Cord
2019-02-02 22:01:35.886554-0500 HybridPool[1720:534623] items at ever cell entry: Keys
2019-02-02 22:01:35.886658-0500 HybridPool[1720:534623] items at ever cell entry: Hshhdhdbd
2019-02-02 22:01:35.886978-0500 HybridPool[1720:534623] items at ever cell entry: Jhghhvhh
2019-02-02 22:01:35.887082-0500 HybridPool[1720:534623] items at ever cell entry: Book
2019-02-02 22:01:35.887184-0500 HybridPool[1720:534623] items at ever cell entry: Njhhnn
2019-02-02 22:01:35.887311-0500 HybridPool[1720:534623] items at ever cell entry: Tv
2019-02-02 22:01:35.887449-0500 HybridPool[1720:534623] items at ever cell entry: 9th item
2019-02-02 22:01:35.891688-0500 HybridPool[1720:534623] left: 8
2019-02-02 22:01:36.660758-0500 HybridPool[1720:534623] right: 9
2019-02-02 22:01:36.931630-0500 HybridPool[1720:534623] Item added! pool
Чтобы уточнить названия предметов в self.items
, которые я вижу представленными в таблице, выглядит так:
**Row 0:**
Table, Cord
**Row 1:**
Keys, Hshhdhdbd
**Row 2:**
Jhghhvhh, Book
**Row 3:**
9th item, (blank - because there are only 9 items - not an even 10) --> this row should be last!
**Row 4:**
Table, Cord <- this is the first row again, this should be what is in **Row 3** - 9th item, blank.
Я должен также показать это только в том случае, если здесь что-то не так:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
// Return the number of rows in the section.
if([self.items count] % 2 != 0) {
return ([self.items count] + 1) / 2;
}
else {
return [self.items count] / 2;
}
}
Выше, потому что я загружаю два элемента в ряд, я обрабатываю случай, когда есть четное количество элементов (которое просто делит [self.items count]
на 2
. Для нечетногоколичество self.items
, я добавляю 1
перед делением на 2
, так что есть строка, доступная для последнего элемента (а затем место в этой строке остается пустым). Это мне кажется правильным, но, возможно, яздесь отсутствует какая-то хитрая ошибка?
Судя по выводу консоли, я не знаю, почему строки загружаются не по порядку или почему Row 0
повторяется для Row 4
, пожалуйста, помогите, спасибо!
ОБНОВЛЕНИЕ
Получая тот же результат с этим:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSLog(@"cellForRowAtIndexPath getting called - row: %li", indexPath.row);
[self.leftItems enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
NSLog(@"leftItem: %@", [obj valueForKey:@"item"]);
}];
[self.rightItems enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
NSLog(@"rightItem: %@", [obj valueForKey:@"item"]);
}];
//UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell1" forIndexPath:indexPath];
//NSLog(@"indexPath.row: %li, %@", (long)indexPath.row, [self.items objectAtIndex:indexPath.row]);
PoolsTableViewCell *cell = (PoolsTableViewCell*)[tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
if(cell.cellLeftImageView.image == nil) { //Equivalent to cell == nil
NSObject* leftObj = [self.leftItems objectAtIndex:indexPath.row];
NSObject* rightObj = [self.rightItems objectAtIndex:indexPath.row];
cell.cellLeftViewLabel.text = [leftObj valueForKey:@"item"];
NSString *ImageURL = [leftObj valueForKey:@"downloadURL"];
NSData *imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:ImageURL]];
cell.cellLeftImageView.image = [UIImage imageWithData:imageData];
if(![rightObj isEqual:[NSNull null]]) {
cell.cellRightViewLabel.text = [rightObj valueForKey:@"item"];
NSString *secondImageURL = [rightObj valueForKey:@"downloadURL"];
NSData *secondImageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:secondImageURL]];
cell.cellRightImageView.image = [UIImage imageWithData:secondImageData];
}
else {
cell.cellRightViewLabel.text = @"";
cell.cellRightImageView.image = nil;
}
}
return cell;
}
консольный вывод:
2019-02-03 11:32:50.583214-0500 HybridPool[1827:594545] cellForRowAtIndexPath getting called - row: 0
2019-02-03 11:32:50.583377-0500 HybridPool[1827:594545] leftItem: Table
2019-02-03 11:32:50.583486-0500 HybridPool[1827:594545] leftItem: Keys
2019-02-03 11:32:50.583605-0500 HybridPool[1827:594545] leftItem: Jhghhvhh
2019-02-03 11:32:50.583997-0500 HybridPool[1827:594545] leftItem: Njhhnn
2019-02-03 11:32:50.584116-0500 HybridPool[1827:594545] leftItem: 9th item
2019-02-03 11:32:50.584224-0500 HybridPool[1827:594545] rightItem: Cord
2019-02-03 11:32:50.584328-0500 HybridPool[1827:594545] rightItem: Hshhdhdbd
2019-02-03 11:32:50.584429-0500 HybridPool[1827:594545] rightItem: Book
2019-02-03 11:32:50.584528-0500 HybridPool[1827:594545] rightItem: Tv
2019-02-03 11:32:50.584771-0500 HybridPool[1827:594545] rightItem: <null>
2019-02-03 11:32:54.647304-0500 HybridPool[1827:594545] cellForRowAtIndexPath getting called - row: 1
2019-02-03 11:32:54.647551-0500 HybridPool[1827:594545] leftItem: Table
2019-02-03 11:32:54.647666-0500 HybridPool[1827:594545] leftItem: Keys
2019-02-03 11:32:54.647773-0500 HybridPool[1827:594545] leftItem: Jhghhvhh
2019-02-03 11:32:54.647876-0500 HybridPool[1827:594545] leftItem: Njhhnn
2019-02-03 11:32:54.647992-0500 HybridPool[1827:594545] leftItem: 9th item
2019-02-03 11:32:54.648102-0500 HybridPool[1827:594545] rightItem: Cord
2019-02-03 11:32:54.648199-0500 HybridPool[1827:594545] rightItem: Hshhdhdbd
2019-02-03 11:32:54.648403-0500 HybridPool[1827:594545] rightItem: Book
2019-02-03 11:32:54.648519-0500 HybridPool[1827:594545] rightItem: Tv
2019-02-03 11:32:54.648769-0500 HybridPool[1827:594545] rightItem: <null>
2019-02-03 11:32:56.447403-0500 HybridPool[1827:594545] cellForRowAtIndexPath getting called - row: 2
2019-02-03 11:32:56.447610-0500 HybridPool[1827:594545] leftItem: Table
2019-02-03 11:32:56.447724-0500 HybridPool[1827:594545] leftItem: Keys
2019-02-03 11:32:56.447829-0500 HybridPool[1827:594545] leftItem: Jhghhvhh
2019-02-03 11:32:56.447931-0500 HybridPool[1827:594545] leftItem: Njhhnn
2019-02-03 11:32:56.448151-0500 HybridPool[1827:594545] leftItem: 9th item
2019-02-03 11:32:56.448281-0500 HybridPool[1827:594545] rightItem: Cord
2019-02-03 11:32:56.448389-0500 HybridPool[1827:594545] rightItem: Hshhdhdbd
2019-02-03 11:32:56.448490-0500 HybridPool[1827:594545] rightItem: Book
2019-02-03 11:32:56.448589-0500 HybridPool[1827:594545] rightItem: Tv
2019-02-03 11:32:56.448689-0500 HybridPool[1827:594545] rightItem: <null>
2019-02-03 11:32:57.981261-0500 HybridPool[1827:594545] cellForRowAtIndexPath getting called - row: 3
2019-02-03 11:32:57.981471-0500 HybridPool[1827:594545] leftItem: Table
2019-02-03 11:32:57.981625-0500 HybridPool[1827:594545] leftItem: Keys
2019-02-03 11:32:57.981745-0500 HybridPool[1827:594545] leftItem: Jhghhvhh
2019-02-03 11:32:57.981874-0500 HybridPool[1827:594545] leftItem: Njhhnn
2019-02-03 11:32:57.982081-0500 HybridPool[1827:594545] leftItem: 9th item
2019-02-03 11:32:57.982214-0500 HybridPool[1827:594545] rightItem: Cord
2019-02-03 11:32:57.982315-0500 HybridPool[1827:594545] rightItem: Hshhdhdbd
2019-02-03 11:32:57.982441-0500 HybridPool[1827:594545] rightItem: Book
2019-02-03 11:32:57.982539-0500 HybridPool[1827:594545] rightItem: Tv
2019-02-03 11:32:57.982638-0500 HybridPool[1827:594545] rightItem: <null>
2019-02-03 11:33:00.735076-0500 HybridPool[1827:594545] cellForRowAtIndexPath getting called - row: 4
2019-02-03 11:33:00.735252-0500 HybridPool[1827:594545] leftItem: Table
2019-02-03 11:33:00.735337-0500 HybridPool[1827:594545] leftItem: Keys
2019-02-03 11:33:00.735410-0500 HybridPool[1827:594545] leftItem: Jhghhvhh
2019-02-03 11:33:00.735480-0500 HybridPool[1827:594545] leftItem: Njhhnn
2019-02-03 11:33:00.735547-0500 HybridPool[1827:594545] leftItem: 9th item
2019-02-03 11:33:00.735692-0500 HybridPool[1827:594545] rightItem: Cord
2019-02-03 11:33:00.735762-0500 HybridPool[1827:594545] rightItem: Hshhdhdbd
2019-02-03 11:33:00.735830-0500 HybridPool[1827:594545] rightItem: Book
2019-02-03 11:33:00.735896-0500 HybridPool[1827:594545] rightItem: Tv
2019-02-03 11:33:00.735965-0500 HybridPool[1827:594545] rightItem: <null>
2019-02-03 11:33:01.876340-0500 HybridPool[1827:594545] Item added! pool
2019-02-03 11:33:03.352399-0500 HybridPool[1827:594545] cellForRowAtIndexPath getting called - row: 3
2019-02-03 11:33:03.352967-0500 HybridPool[1827:594545] leftItem: Table
2019-02-03 11:33:03.353179-0500 HybridPool[1827:594545] leftItem: Keys
2019-02-03 11:33:03.353377-0500 HybridPool[1827:594545] leftItem: Jhghhvhh
2019-02-03 11:33:03.353569-0500 HybridPool[1827:594545] leftItem: Njhhnn
2019-02-03 11:33:03.353755-0500 HybridPool[1827:594545] leftItem: 9th item
2019-02-03 11:33:03.353897-0500 HybridPool[1827:594545] rightItem: Cord
2019-02-03 11:33:03.354230-0500 HybridPool[1827:594545] rightItem: Hshhdhdbd
2019-02-03 11:33:03.354612-0500 HybridPool[1827:594545] rightItem: Book
2019-02-03 11:33:03.354739-0500 HybridPool[1827:594545] rightItem: Tv
2019-02-03 11:33:03.354848-0500 HybridPool[1827:594545] rightItem: <null>
2019-02-03 11:33:03.477654-0500 HybridPool[1827:594545] cellForRowAtIndexPath getting called - row: 4
2019-02-03 11:33:03.477863-0500 HybridPool[1827:594545] leftItem: Table
2019-02-03 11:33:03.477974-0500 HybridPool[1827:594545] leftItem: Keys
2019-02-03 11:33:03.478078-0500 HybridPool[1827:594545] leftItem: Jhghhvhh
2019-02-03 11:33:03.478178-0500 HybridPool[1827:594545] leftItem: Njhhnn
2019-02-03 11:33:03.478276-0500 HybridPool[1827:594545] leftItem: 9th item
2019-02-03 11:33:03.478374-0500 HybridPool[1827:594545] rightItem: Cord
2019-02-03 11:33:03.478472-0500 HybridPool[1827:594545] rightItem: Hshhdhdbd
2019-02-03 11:33:03.478569-0500 HybridPool[1827:594545] rightItem: Book
2019-02-03 11:33:03.478665-0500 HybridPool[1827:594545] rightItem: Tv
2019-02-03 11:33:03.478763-0500 HybridPool[1827:594545] rightItem: <null>