5

我正在使用 UICollectionsView insertItemsAtIndexPath,这很烦人,以至于当我在 UICollectionView 上滚动然后它调用 insertItemsAtIndexPath 时,它会随着项目滑动。我希望这种插入是无缝的,只需将其附加到顶部,而用户不知道顶部已附加了某些内容。我怎样才能做到这一点?

4

1 回答 1

3

我想你将不得不继承 UICollectionViewFlowLayout,然后- (UICollectionViewLayoutAttributes *)initialLayoutAttributesForAppearingItemAtIndexPath:(NSIndexPath *)itemIndexPath只返回 nil。这样,它将直接将其放置到最终位置,因此不应发生动画。

于 2013-01-30T00:42:05.333 回答