I am attempting to update a single cell inside a UICollectionView, specifically I am just trying to update an image in that specific cell detonated by cel
UICollectionView
cel
Dinesh's answer is spot-on. But to avoid unwanted animations when reloading (aka "flashing") use:
BOOL animationsEnabled = [UIView areAnimationsEnabled]; [UIView setAnimationsEnabled:NO]; [myCollectionView reloadItemsAtIndexPaths:myIndexPaths]; [UIView setAnimationsEnabled:animationsEnabled];