1
vote
iPhone Objective C : Saving & Loading UIColor into & from NSUserDefaults
One way of doing it might be to archive it (like with NSColor, though I haven't tested this):
NSData *colorData = [NSKeyedArchiver archivedDataWithRootObject:color];
[[NSUserDefault …
