- (void)scrollTableToFoot:(BOOL)animated {
NSInteger s = [self.chatTable numberOfSections];
if (s<1) return;
NSInteger r = [self.chatTable numberOfRowsInSection:s-1];
if (r<1) return;
NSIndexPath *ip = [NSIndexPath indexPathForRow:r-1 inSection:s-1];
[self.chatTable scrollToRowAtIndexPath:ip atScrollPosition:UITableViewScrollPositionBottom animated:animated];
}
uitableview滚动到最后一行
最新推荐文章于 2020-12-19 08:25:02 发布