I have an Entity called "Item" with an attribute called "colorArray" with type "Transformable".
colorArray could be, for example:
[["Red", "Blue", "Green"], ["Red"], ["Blue", "Green"], ["Green"], ["Blue"], ["Blue", "Green", "Red"]]
I then save colorArray to core data using:
newEntry.colorArray = colorArray as NSObject
I want to retrieve the colorArray from core data (in the same array format it is saved in), what is the best way to do this?