- (void)scrollToBottom
{
NSInteger sectionCount = [self.dataSource numberOfSectionsInTableView:self];
NSInteger lastSectionRowCount = [self.dataSource tableView:self numberOfRowsInSection:sectionCount-1];
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:lastSectionRowCount-1 inSection:sectionCount-1];
[self scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewRowAnimationTop animated:YES];
}
相关文章
- tableView滑动到底部
- 仿微博视频边下边播之滑动TableView自动播放-b
- 微信小程序从入门到实践(一)-设置底部导航栏
- ScrollView滑动到底部或顶部监听,ScrollView滑动到底部或顶部再继续滑动监听;
- 如何将图像约束到iPhone X上的View Controller底部(在主页指示器下面)
- Swift 4:将数据从Tableview传递到ViewController
- JS滚动条到网页底部自动加载更多内容
- ListView设置滑动到底部自动加载 重复多次加载问题
- HTML / CSS将DIV对齐到页面底部和屏幕 - 以先到者为准
- android ScrollView判断滑动到底部的两种方式