Using the Meteor Collection API here: https://github.com/crazytoad/meteor-collectionapi
Which is crazy awesome I have been able to do CRUD operation through terminal.
When I request all the records of the collection it seems that I get back a JSON object array like this: [{"id": "1", "name":"Aaa"}, {"id": "2", "name":"Bbb"}]
Since I am interesting in using the API to perform CRUD command from my iOS app, I am wondering how would I convert from an JSON object array to initialed objects inside my iOS app?
Thanks!