2

基于分页 UIScrollView 的页面更改,我正在调用scrollToRowAtIndexPath:atScrollPosition:animated正在显示的该页面的表格细节。

- (void)scrollViewDidScroll:(UIScrollView *)scrollView{
    CGFloat pageWidth = self.scrollView.frame.size.width;
    int page = floor((self.scrollView.contentOffset.x - pageWidth/2)/pageWidth)+1;
    self.pageControl.currentPage = page;
    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:page];
    [self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:YES];
}

但是,自动滚动的动画发生得太慢了。有没有办法让这个动画更活泼?

4

1 回答 1

19

一个快速的解决方案可能是:

[UIView animateWithDuration:aSmallValue animations:^{
        [self.tableView scrollToRowAtIndexPath:indexPath
                              atScrollPosition:UITableViewScrollPositionTop 
                                      animated:NO];
}];
于 2013-06-13T06:41:59.793 回答