Storing miscellaneous singleton data in CoreData app?

2008-05-28 Thread Rick Mann
I have a little CoreData app that seems to work as I want it to. I have a list in my UI and I can add and remove items to it, and a customized detail view that displays the data for the currently- selected item. I also want to display some data in the detail view that is global to the

Re: Storing miscellaneous singleton data in CoreData app?

2008-05-28 Thread Andrew Merenbach
Hi, Rick, It's been a while since I did this, but I had a need for the exact thing that you are describing at one point. Basically, in my document data model, I created another entity. This entity had whatever properties I needed to make global. I then used an NSObjectController

Re: Storing miscellaneous singleton data in CoreData app?

2008-05-28 Thread Quincey Morris
On May 28, 2008, at 00:43, Rick Mann wrote: I also want to display some data in the detail view that is global to the document. What's the best/easiest way to add that information to my document and make it available to a text field via bindings? Do I need to create additional CoreData