Re: CoreData and mutableArrayValueForKey:

2008-08-31 Thread Alex Duzik
On Aug 30, 2008, at 9:30 PM, Chris Hanson wrote: On Aug 30, 2008, at 2:23 PM, Alex Duzik wrote: I'm writing an app where one Core Data entity -- Folder -- has (conceptually) a to-many relationship with another object -- Item. But I want to keep those items in a particular order, so I have

Re: CoreData and mutableArrayValueForKey:

2008-08-31 Thread Alex Duzik
On Aug 30, 2008, at 9:30 PM, Chris Hanson wrote: On Aug 30, 2008, at 2:23 PM, Alex Duzik wrote: I'm writing an app where one Core Data entity -- Folder -- has (conceptually) a to-many relationship with another object -- Item. But I want to keep those items in a particular order, so I have

CoreData and mutableArrayValueForKey:

2008-08-30 Thread Alex Duzik
Hi all, I'm writing an app where one Core Data entity -- Folder -- has (conceptually) a to-many relationship with another object -- Item. But I want to keep those items in a particular order, so I have a third entity, OrderedItem, which keeps a reference to the folder along with a

Re: CoreData and mutableArrayValueForKey:

2008-08-30 Thread Quincey Morris
On Aug 30, 2008, at 14:23, Alex Duzik wrote: I'm writing an app where one Core Data entity -- Folder -- has (conceptually) a to-many relationship with another object -- Item. But I want to keep those items in a particular order, so I have a third entity, OrderedItem, which keeps a

Re: CoreData and mutableArrayValueForKey:

2008-08-30 Thread Chris Hanson
On Aug 30, 2008, at 2:23 PM, Alex Duzik wrote: I'm writing an app where one Core Data entity -- Folder -- has (conceptually) a to-many relationship with another object -- Item. But I want to keep those items in a particular order, so I have a third entity, OrderedItem, which keeps a