I have a ViewController that has tableView. That tableView populates Custom Cells. Every Custom Cell has a collectionView that displays images (imagine news feed structure when every news block has images).
Now, after editing anything in one news block, I want to refresh a single cell of that tableView (one news block). I tried to use [newsList reloadRowsAtIndexPaths: ... ]
provided that I know exactly the indexPath of that tableView Cell, but the problem is that when I scroll down to the next tableView Cell and do editing there, after reloading that Second Cell all the images from the first news block will be shown in the second news block.
Is there any other ways to refresh Custom Cell that includes CollectionView?