遇到滚动CollectionView的问题。当用户拖动滚动并离开时,collectionView会在停止之前滚动抖动。混蛋/闪烁非常少,但我无法理解为什么它不像通常的集合视图那样平滑。
我只是使用这些方法来加载CollectionView:
-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
return 500;
}
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
EmojiCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:EmojiCellIdentifier forIndexPath:indexPath];
return cell;
}
以下是代码的链接:CODE