19
Como saber quando o UITableView concluiu o ReloadData?
Estou tentando rolar para a parte inferior de um UITableView após concluir a execução [self.tableView reloadData] Eu originalmente tinha [self.tableView reloadData] NSIndexPath* indexPath = [NSIndexPath indexPathForRow: ([self.tableView numberOfRowsInSection:([self.tableView numberOfSections]-1)]-1) inSection: ([self.tableView numberOfSections]-1)]; [self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionBottom animated:YES]; Mas então eu li que reloadData é assíncrono, então a rolagem não acontece desde …