If I share a class implementing the NSCoding protocol between a desktop cocoa application and an iOS application, will I also be able to share a datafile created by archiving an object between those two applications?
If I share a class implementing the NSCoding protocol between a desktop cocoa application
Share
Files archived with NSKeyedArchiver are compatible between both plattforms. You just have to look out for classes that are not available on both plattforms like:
Since those are not available on both plattforms you will not be able to unarchive them on the other plattform.