re: core-data app design question

2009-08-29 Thread Ben Trumbull
I have a question, or rather, I'm looking for advice, on the design of an application. Essentially I'm wanting to write a labbook-type application. My plan was to use core-data for the model. In the model will be an Entry entity. Each entry will have a one-to-one relationship to a Content entity.

Re: core-data app design question

2009-08-29 Thread Kyle Sluder
On Aug 29, 2009, at 5:53 PM, Ben Trumbull trumb...@apple.com wrote: Encoding your data this way is pushing the boundaries of violating MVC patterns by archiving UI information (NSTextView drawing information) into your model (database). That obviously doesn't work if the platform doesn't

Re: core-data app design question

2009-08-28 Thread Michael Thon
On Aug 28, 2009, at 8:37 AM, Martin Hewitson wrote: Dear list, I have a question, or rather, I'm looking for advice, on the design of an application. Essentially I'm wanting to write a labbook-type application. My plan was to use core-data for the model. In the model will be an Entry