What's the easiest way to save UIColor into NSUserDefaults ?
And how to re-create it from NSUserDefaults?
Many thanks for reading
|
1
|
What's the easiest way to save UIColor into NSUserDefaults ? And how to re-create it from NSUserDefaults? Many thanks for reading
|
||
|
|
|
|
Edit 2: I seem to have found the answer. Check out the article by Erica Sadun on extending UIColor. Edit: This code does not seem to work for a UIColor Object. Not sure why... Here is some code to take a look at: Saving an object into NSUserDefaults:
Reading an object from NSUserDefaults:
|
||||||||
|
|
|
One way of doing it might be to archive it (like with NSColor, though I haven't tested this):
And to get it back:
|
||
|
|
|
|
I've got the answer by myself Save
Load
|
||||
|
|
|
Thanks for Erica's UIColor category. I did not really like saving 4 floats in the preferences, and just wanted a single entry. So using Erica's UIColor category, I was able to convert the RGB color to/from an NSString which can be saved in the preferences.
|
||
|
|