基于分页 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];
}
但是,自动滚动的动画发生得太慢了。有没有办法让这个动画更活泼?