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
网友评论