Is it better to use UICollectionView's prepareForReuse method or ListSectionController's cellForItem method to reset some views state in cell?
If you are working with your model (item), ListSectionController's cellForItem is probably the better choice.
I want to manage the selection state of cells.
@Recouse can you give us an example of your setup and options? Either is probably ok. Typically for selection you’d set a property on the cell every time cellForItem is called, so that should take care of “resetting” the cells state.
Sent with GitHawk
Got it. Thank you for the answers.
Most helpful comment
If you are working with your model (item),
ListSectionController'scellForItemis probably the better choice.