I have a collectionView that will only display three cells. Each cell is of the same type of custom collectionViewCell that I've set up in storyboard. I only want each cell instantiated once and only once; not reused.
How can I return cells from cellForItemAtIndexPath: datasource method that aren't reused? Is it possible to do this?
reuseIdentifierfor each one, but why bother. Just let the collection view handle it - Paulw11