滑动到 底部,哈哈,

 

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

}

posted @ 2013-08-26 10:46  路在脚下,  阅读(162)  评论(0编辑  收藏  举报