我正在尝试自动移动UICollectionView
中的单元格。移动它的代码:
- (void)scroll {
row += 2;
[UIView animateWithDuration:1.f
delay:0.f
options:UIViewAnimationOptionAllowUserInteraction
animations:^{
[_collectionView scrollToItemAtIndexPath:[NSIndexPath indexPathForRow:row inSection:0] atScrollPosition:UICollectionViewScrollPositionNone animated:NO];
}
completion:^(BOOL finished) {
}];
}
我的单元格以2行模式水平组织:
|cell||cell||cell|->etc
|cell||cell||cell|->etc
问题是当滚动移动到下一个单元格时,整个collectionView会移动,前一个单元格会消失。当屏幕上看不到前一个单元格的一半时,就会发生这种情况。为什么会这样?知道如何解决问题吗?
看起来像:(〜表示屏幕)
step 1:
~|cell||cell||cell|~
~|cell||cell||cell|~
step 2:
~ell||cell||cell||c~
~ell||cell||cell||c~
step 3:
~ll||cell||cell||ce~
~ll||cell||cell||ce~
step 4:
~ |cell||cell||cel~ --> here first cell disappears even though
~ |cell||cell||cel~ --> there is enough space for it
更重要的是,代理人:collectionView:didEndDisplayingCell:forItemAtIndexPath:
在单元格一半可见时被调用(正好在步骤3和4之间)
答案 0 :(得分:0)
好的,所以它就不能制作动画了 - 细胞出现得太快了。而不是这种方法,我使用了这样的东西:
_timer = [NSTimer scheduledTimerWithTimeInterval:0.02f target:self selector:@selector(scroll) userInfo:nil repeats:YES];
- (void)scroll {
tmp += 1;
_collectionView.contentOffset = CGPointMake(tmp, 0);
}