美文网首页
Tableview滚动到顶部

Tableview滚动到顶部

作者: 114105lijia | 来源:发表于2019-06-19 09:07 被阅读0次

建议用这个

[_tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] atScrollPosition:UITableViewScrollPositionBottom animated:NO];

下面两个有时候不管用:

 [_tableView setContentOffset:CGPointMake(0,0) animated:YES];
[_tableView scrollRectToVisible:CGRectMake(0, 0, 1, 1) animated:YES];

相关文章

网友评论

      本文标题:Tableview滚动到顶部

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