Доброго времени суток. Вопрос следующий:
Мне с сервера приходит список объявлений (по 20 штук), у каждого объявления есть расстояние в километрах от пользователя, список сортируется по увеличению расстояния. Хочу сделать таблицу, в которой будут секции "До 3 км", "До 15 км" и более 15 км.
Как сделать механизм подгрузки/загрузки данных в таблицу с секциями?
Вот такая запись (не обращайте внимания на if (i==0) это не верное условие,
NSMutableArray* newPaths = [NSMutableArray array];
for (int i = (int)[self.petsArray count] - (int)[pets count]; i < [self.petsArray count]; i++) {
if (i == 0)
{
[newPaths addObject:[NSIndexPath indexPathForRow:i inSection:0]];
}
else
{
[newPaths addObject:[NSIndexPath indexPathForRow:i inSection:1]];
}
}
[self.tableView beginUpdates];
[self.tableView insertRowsAtIndexPaths:newPaths withRowAnimation:UITableViewRowAnimationTop];
[self.tableView endUpdates];
ругается
Invalid update: invalid number of sections. The number of sections contained in the table view after the update (2) must be equal to the number of sections contained in the table view before the update (2), plus or minus the number of sections inserted or deleted (0 inserted, 1 deleted
Как правильно обновить таблицу?