I just had a question based on MVC model, which I want to utilize with respect to JSON object. I am parsing some values from web services, and at this point, I don't want to store any credentials on the device at any given point for security purposes. Having many views controllers which can access the information with respect to this object, is it a good approach to have this object as a "singleton object" which can be globally accessed and have only one instance, than recreating the object at every viewcontroller. Also, lets say I want to create some sort of model with respect to the json object, what would be a better way to bind the objects from json to such "model"? Is there any universal way to d it or rather just "DIY" approach?
Thanks.