Binding Error (accessing value for key) - but works with debugging on

2008-03-07 Thread Jason Kravitz
The following is occurring on Leopard - Garbage Collection set to required... I have an Entity with a NSManagedObject class declaration // header @interface MyEntity : NSManagedObject { } @property (readwrite, copy) NSString *origText,*title; @property (readwrite, copy) NSDate *date; @end //

Re: Binding Error (accessing value for key) - but works with debugging on

2008-03-07 Thread Jason Kravitz
en working - did changing copy to retain prevent some kind of border condition that was causing the KVC error or do I still have something weird in my setup that may cause a problem down the line? On Fri, Mar 7, 2008 at 5:43 PM, mmalc crawford <[EMAIL PROTECTED]> wrote: > > On Mar 7, 2

Re: Binding Error (accessing value for key) - but works with debugging on (SOLVED)

2008-03-07 Thread Jason Kravitz
. thanks for the pointer to the dynamic vs. synthesize info On Fri, Mar 7, 2008 at 6:13 PM, Jason Kravitz <[EMAIL PROTECTED]> wrote: > Thanks mmalc > > so after reading this, I see that dynamic is not necessary to explicitly > specify as it is the default... I also used the > &q

NSString value mangled in NSDictionary with Garbage Collection

2008-04-10 Thread Jason Kravitz
I created a while loop where I am reading through a text file and pulling out certain words based on RegEx criteria. I want to add these words as a comma separated list under different keys in an NSMutableDictionary. I've created a simplified psuedo-code representation of what I'm trying to do as i

Coredata - populating initial data on app load - best practices

2008-03-03 Thread Jason Kravitz
I am writing my first coredata application and am wondering what the recommended way is to populate initial data. Most coredata examples do a good job explaining binding and getting data from the UI but fail to refer to populating the initial data set. I was looking at the background fetching exam

Re: Coredata - populating initial data on app load - best practices

2008-03-03 Thread Jason Kravitz
PM, mmalc crawford <[EMAIL PROTECTED]> wrote: > > On Mar 3, 2008, at 7:48 AM, Jason Kravitz wrote: > > > I am writing my first coredata application and am wondering what the > > recommended way is to populate initial data. Most coredata examples do > > a good job e