Core Data properties can be declared 'transient', meaning that they
won't be stored in the database.
You can declare them in your model, and have code for them just like
any other property. Since you mention that your images are dynamically
generated you'd probably have code in your entity
On Thu, Nov 6, 2008 at 1:09 PM, Georg Seifert <[EMAIL PROTECTED]> wrote:
> I have a NSCollectionView populated with bindings. I want to show images
> witch are generated dynamically. I do not want to store those images in
> CoreData (at least not written to disk).
>
> should I use an extra diction
hello
I have a NSCollectionView populated with bindings. I want to show
images witch are generated dynamically. I do not want to store those
images in CoreData (at least not written to disk).
should I use an extra dictionary? Or subclass my entity?
any suggestion is welcome
Georg