为什么UICollectionView在滚动后刷新数据?

时间:2013-10-08 20:45:43

标签: ios uicollectionview uicollectionviewcell

滚动后

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

0 个答案:

没有答案