UICollectionView - Downloading images and effective reloading of data, like Instagram

后端 未结 3 1018
梦谈多话
梦谈多话 2021-02-01 08:24

I noticed that apps like Intagram uses UICollectionViews to display the feed of photos. I also noticed that the cells for these photos is somehow placed on screen

3条回答
  •  旧巷少年郎
    2021-02-01 08:50

    use

    [self.collectionView reloadItemsAtIndexPaths:[NSArray arrayWithObject:indexPath]];

    instead of

    [self.collectionView reloadData];

    here indexPath is the NSIndexPath Object for the corresponding UICollectionViewCell Object

提交回复
热议问题