美文网首页
iOS-UITableView scrollToRowAtInd

iOS-UITableView scrollToRowAtInd

作者: WhoJun | 来源:发表于2022-09-09 11:16 被阅读0次

方案一

[self.tableView reloadData];
[self.tableView layoutIfNeeded];
[self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:index inSection:0] atScrollPosition:UITableViewScrollPositionTop animated:YES];

方案二

self.tableView.contentInset = UIEdgeInsetsMake(self.tableView.contentInset.top, 0, self.tableView.frame.size.height, 0);
[self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:index inSection:0] atScrollPosition:UITableViewScrollPositionTop animated:YES];

相关文章

网友评论

      本文标题:iOS-UITableView scrollToRowAtInd

      本文链接:https://www.haomeiwen.com/subject/rmwanrtx.html