I have created an app on iPhone using UICollectionView. My problem is I want to update a specific cell inside a UICollectionView. I am using [self.collectionView reloadData] method. But this is not the solution because it will reload whole collection view.
Can anyone tell me how can I update specific cell inside the collection view without reloading whole collection view?
How to update a specific cell of UICollectionView?
Ask by Anonymous User
Updated 15 Jan 2016
To update the specific cell of collection view, you can use the method: reloadItemsAtIndexPaths:, it will reload the specific indexPaths in our collection view.
I hope the above method is helpful for you.