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
__
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
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
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)
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)
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