美文网首页
tableView滑动到最底部

tableView滑动到最底部

作者: 227f600b867c | 来源:发表于2016-12-29 15:37 被阅读125次

切记在获取tableView的contentSize前,执行layoutIfNeeded

- (void)scrollToBottom {
    if (self.allComments.count == 0) {
        return;
    }
    [self.tableView layoutIfNeeded];
    CGFloat yOffset = 0;
    if (self.tableView.contentSize.height > self.tableView.bounds.size.height) {
        yOffset = self.tableView.contentSize.height - self.tableView.bounds.size.height;
    }
    MAIN_THREAD(^{
        self.tableView.contentOffset = CGPointMake(0, yOffset);
    });
}

相关文章

网友评论

      本文标题:tableView滑动到最底部

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