I want to reload just one cell in a UICollectionView
.
I know in UITableView
it is something like this :
[self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPathOfYourCell, nil] withRowAnimation:UITableViewRowAnimationNone];
but what about UICollectionView
?