滑动到 底部,哈哈,

 

tableView.contentOffset.y + tableview.frame.size.height = tableview.contentSize.height;

- (void)scrollTableViewToBottom:(BOOL)animated

{

            [UIViewbeginAnimations:nilcontext:NULL];

            [UIViewsetAnimationCurve:UIViewAnimationCurveEaseInOut];

            [UIViewsetAnimationDuration:0.35f];

            self.tableView.contentOffset = CGPointMake(0, self.tableView.contentSize.height - self.tableView.frame.size.height);

            [UIView commitAnimations];

}

原文地址:https://www.cnblogs.com/guligei/p/3282094.html