美文网首页
[self.tableView scrollToRowAtInd

[self.tableView scrollToRowAtInd

作者: 114105lijia | 来源:发表于2019-02-26 13:37 被阅读1次

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

当滑动到顶部时,闪退。改为下面这句就好了:

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

相关文章

网友评论

      本文标题:[self.tableView scrollToRowAtInd

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