If I have a file that was written by Cocoa on a Mac, using NSKeyedArchiver, are there any tricks to reading it on iPhone OS? NSKeyedArchiver exists on both platforms, but the Mac version might archive an NSColor, and iPhone can only unarchive UIColor.
There’s setClassName:forClass: but I don’t think that helps.
I don’t think it’s literally going to be possible to convert the NSColor (or most other classes), but I was wondering if there were some tricks.
(I have had success with archived NSStrings.)