怎样让scrollview滚动到底部?

怎样让scrollview滚动到底部?

阅读 17k
1 个回答
objc- (void)scrollsToBottomAnimated:(BOOL)animated
{
    CGFloat offset = self.tableView.contentSize.height - self.tableView.bounds.size.height;
    if (offset > 0)
    {
        [self.tableView setContentOffset:CGPointMake(0, offset) animated:animated];
    }
}
推荐问题