I have just been reading about the MVC design pattern for Cocoa-Touch applications and it suggested using a property list for the model. My question is if you needed to do some calculation on the data in the property list where would the code for that calculation go?
In the past I have used a singleton object for my model and then used that to access data and do any processing, I am just curious how others go about setting this up ...
Gary