1

UICollectionViewスクロール後にデータを更新し、セルの位置を変更します 。どうすればそれを止めることができますか? cellForItemAtIndexPathスクロールするたびに呼び出したくないですか?

私はあまりにも多くのデータを持っていません。

- (UICollectionViewCell *)collectionView:(UICollectionView *)cv cellForItemAtIndexPath:(NSIndexPath *)indexPath {
    CCell *cell = [cv dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];

        cell.logo.image=[UIImage imageNamed:[NSString stringWithFormat:@"%@.jpg",news[indexPath.row]]];

    return cell;
}
4

0 に答える 0