Hi,
Someone on IRC told me I could create objective c objects directly from plist files in such a way that I don't have to specify strings everywhere for serialization/deserialization of the plist.
Does anyone know how to do this?
I'd like to simply have a plist like this
<array>
<object>
<id>my unique id</id>
<description>first items description</description>
</object>
</array>
And somehow deserialize this directly into objective c objects without having to specify the literal string "description" or "id" anywhere in code.
This may not be possible, but I couldn't find anywhere online or on SO that did this or said it's not possible.
Also, I wanted to follow through on what the guy on IRC guy said, but didn't have time to ask him there n then.
Any help is greatly appreciated,
-Vandelizer