[self.tableView scrollToRowAtInd

2019-02-26  本文已影响1人  114105lijia

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

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

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

上一篇 下一篇

猜你喜欢

热点阅读