Re: Cocoa Bindings and popups
Re: Cocoa Bindings and popups
- Subject: Re: Cocoa Bindings and popups
- From: Steve Harris <email@hidden>
- Date: Mon, 19 Jul 2004 13:11:36 +0100
You do need to capitalize the 'r' in rideDescriptionList in your method
names when for everything but the - rideDescriptionList: method. So
you'd have:
- (NSMutableArray *)rideDescriptionList;
- (void)setRideDescriptionList:(NSMutableArray *)newList;
- (unsigned)countOfRideDescriptionList;
- (id)objectInRideDescriptionListAtIndex:(unsigned)index;
- (void)insertObject:(id)theObject
inRideDescriptionListAtIndex:(unsigned)index;
- (void)removeObjectFromRideDescriptionListAtIndex:(unsigned)index;
Steve
On 19 Jul 2004, at 06:23, Chuck Musser wrote:
I implemented these six methods, to no avail:
- (NSMutableArray *)rideDescriptionList;
- (void)setrideDescriptionList:(NSMutableArray *)newList;
- (unsigned)countOfrideDescriptionList;
- (id)objectInrideDescriptionListAtIndex:(unsigned)index;
- (void)insertObject:(id)theObject
inrideDescriptionListAtIndex:(unsigned)index;
- (void)removeObjectFromrideDescriptionListAtIndex:(unsigned)index;
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.