滚动视图滚动方向

时间:2015-08-21 18:37:33

标签: ios uiscrollview

我为今天的滚动视图自动滚动编写了一段代码,这可能是它自己的想法。 :-)

- (void)animateScrollView
{
    CGPoint point1 = CGPointMake(self.collectionView.contentSize.width + self.collectionView.contentInset.left, 0.0f);
    [self.collectionView setContentOffset:point1 animated:NO];

    CGPoint point2 = CGPointMake(self.collectionView.contentInset.left, 0.0f);
    [self.collectionView setContentOffset:point2 animated:YES];
}

point1 =(4000,0)和point2 =(0,0)

它从L - >滚动; R.不应该从R滚动 - > L'

0 个答案:

没有答案