如何保持uicollectionview在没有拖动的方向滚动?

时间:2014-12-29 16:43:19

标签: ios uicollectionview

我希望uicollectionviewcell像装配线上的东西一样移动。 现在我用

(void)scrollToItemAtIndexPath:(NSIndexPath *)indexPath atScrollPosition:(UICollectionViewScrollPosition)scrollPosition animated:(BOOL)animated

在方法和方法的最后一个方法中,我将方法称为自己。 但UICollectionViewCell移动并停下来继续。

1 个答案:

答案 0 :(得分:0)

UICollectionView继承自UIScrollView,因此您可以使用

// determine point, which you want to scroll
CGPoint scrollPoint = CGPointMake(0, self.tableView.contentSize.height - self.tableView.frame.size.height);
// scroll to it, with custom animation duration
[UIView animateWithDuration:5 animations:^{
    [self.tableView setContentOffset:scrollPoint];
    // Also you can use scrollToItemAtIndexPath here instead of setContentOffset
}];