19
Jak stwierdzić, kiedy UITableView zakończy ReloadData?
Próbuję przewinąć do dołu UITableView po zakończeniu działania [self.tableView reloadData] Pierwotnie miałem [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]; Ale potem przeczytałem, że reloadData jest asynchroniczna, więc przewijanie nie następuje od self.tableView, [self.tableView numberOfSections]i [self.tableView numberOfRowsinSectionwszystkie mają wartość 0. Dzięki! …