I have to use the CAArchiver class for the serialization of the data coming from the .bin file in my iPhone project (I need to use it in a C++ code snippet). How do I do this?
I have also researched the following link: http://msdn.microsoft.com/en-us/library/caz3zy5s(v=vs.80).aspx. This appears to be used in .NET technology.
What am I supposed to do?
CArchive(as per your link) is part of the Microsoft Foundation Class Library. It’s very unlikely that you will find an implementation for them on the iOS platform.If you need only to provide a kind of serialization, Jigneshs answer is the way to go. If you need to be compatible to other output from
CArchivethen chances are that you will have to implement this by yourself.