我希望uicollectionviewcell像装配线上的东西一样移动。 现在我用
(void)scrollToItemAtIndexPath:(NSIndexPath *)indexPath atScrollPosition:(UICollectionViewScrollPosition)scrollPosition animated:(BOOL)animated
在方法和方法的最后一个方法中,我将方法称为自己。
但UICollectionViewCell
移动并停下来继续。
答案 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
}];