Proper design a Model-Controller in Cocoa?

Posted by legege on Stack Overflow See other posts from Stack Overflow or by legege
Published on 2009-10-18T02:27:33Z Indexed on 2010/05/06 3:08 UTC
Read the original article Hit count: 233

Filed under:
|
|
|
|

Hi,

I'm trying to design a simple Cocoa application and I would like to have a clear and easy to understand software architecture. Of course, I'm using a basic MVC design and my question concerns the Model layer. For my application, the Model represents data fetched on the Internet with a XML-RPC API. I'm planning to use Core Data to represent a locally fetched version. How should the data be loaded initially? I'm reading the Cocoa Design Pattern book, and they talk about a Model-Controller that is centric to the Model. How would that be done?

Thanks!

© Stack Overflow or respective owner

Related posts about mvc

Related posts about cocoa