Re: Core Data Issue with Binding

2010-02-11 Thread Kyle Sluder
On Thu, Feb 11, 2010 at 3:48 PM, Mike Abdullah wrote: > Fair enough. The main reason why such a thing is legal is that you sometimes > need a method like -URL or -HTMLString, so the system supports this. Makes perfect sense. Filed doc bug rdar://problem/7640544. --Kyle Sluder __

Re: Core Data Issue with Binding

2010-02-11 Thread Mike Abdullah
On 11 Feb 2010, at 21:50, Kyle Sluder wrote: > On Thu, Feb 11, 2010 at 9:55 AM, Mike Abdullah > wrote: >> Not true, they are KVC-compliant. However, they *are* unwise and you should >> follow Kyle's advice. > > I can't find anywhere that specifically addresses the capitalization > issue. The o

Re: Core Data Issue with Binding

2010-02-11 Thread Kyle Sluder
On Thu, Feb 11, 2010 at 9:55 AM, Mike Abdullah wrote: > Not true, they are KVC-compliant. However, they *are* unwise and you should > follow Kyle's advice. I can't find anywhere that specifically addresses the capitalization issue. The only thing I've found that comes close is the note on typogr

Re: Core Data Issue with Binding

2010-02-11 Thread Mike Abdullah
On 10 Feb 2010, at 20:03, Kyle Sluder wrote: > On Wed, Feb 10, 2010 at 9:26 AM, Matthew Miller wrote: >> @property (nonatomic, retain) NSDate *DateOfBirth; >> @property (nonatomic, retain) NSString *FirstName; >> @property (nonatomic, retain) NSString *LastName; >> @property (nonatomic, retain)

Re: Core Data Issue with Binding

2010-02-10 Thread Kyle Sluder
On Wed, Feb 10, 2010 at 9:26 AM, Matthew Miller wrote: > @property (nonatomic, retain) NSDate *DateOfBirth; > @property (nonatomic, retain) NSString *FirstName; > @property (nonatomic, retain) NSString *LastName; > @property (nonatomic, retain) NSNumber *DraftClass; > @property (nonatomic, retain)

Core Data Issue with Binding

2010-02-10 Thread Matthew Miller
I'm having trouble with a Cocoa app built around an NSManagedObject model. Without getting too far into the weeds, there is a Player object: @class Program; @interface Player : NSManagedObject { } @property (nonatomic, retain) NSDate *DateOfBirth; @property (nonatomic, retain) NSString *FirstN