I have a nib where I set the background of a UICollectionCell to be a "Named Colour", i.e. one that I have specified in my asset library. Now in my cellForItem
code I specify the background colour to be something different.
However, when the app first loads up, the colour of the cell is my "Named Colour" and NOT my programmatically defined one. If I make the cell reload its data (by pushing it offscreen and then onscreen again), it changes to the programmatically defined colour and stays like that.
Why? And how can I stop that from happening?