十一岁的加重songxing10000…… ------ 回到博主首页

让scrollView、tableView滚动到底部

- (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];
    }
}

 

posted @ 2015-05-22 13:17  songxing10000  阅读(394)  评论(0编辑  收藏  举报