I have a CoreData Mac app for which I'm writing an iOS front end. All's working well thusfar, I'm able to successfully read files created with the Mac app in the iOS version. I'm struggling with how to read the NSColor data (being stored as an NSData object in my data model) into a UIColor in iOS version of the app.
To summarize: How do take an NSData object containing an archived NSColor object and convert it to the appropriate UIColor object on an iOS device?