在CustomKeyboard JERK中滚动CollectionView

时间:2016-08-03 15:45:17

标签: ios iphone uicollectionview scrollview custom-keyboard

遇到滚动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

0 个答案:

没有答案