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;
}