Re: mutableArrayForKeyValue Question (ignore other email)

2008-07-01 Thread Ron Lue-Sang
On Jun 29, 2008, at 10:44 AM, Stuart Malin wrote: On Jun 29, 2008, at 7:05 AM, Scot t Anguish wrote: From: Scott Anguish [EMAIL PROTECTED] Subject: Re: mutableArrayForKeyValue Question (ignore other email) To: Alex Wait [EMAIL PROTECTED] Cc: cocoa-dev Cocoa-dev@lists.apple.com Message-ID

Re: mutableArrayForKeyValue Question (ignore other email)

2008-06-29 Thread Scott Anguish
I think there is still some clarification necessary. what exactly are you trying to accomplish, rather than how you are trying to do it? would I be correct to guess that you want to create a new Person object and add it to the array? if so you need to create the object and add it to the

Re: mutableArrayForKeyValue Question (ignore other email)

2008-06-29 Thread Ken Thomases
On Jun 28, 2008, at 9:42 PM, Alex Wait wrote: I am trying to modify the array controller programmatically and I'm running into problems using mutableArrayForKeyValue I am using this line id proxy = [controller mutableArrayValueForKey:@Person]; -mutableArrayValueForKey: is for modifying

Re: mutableArrayForKeyValue Question (ignore other email)

2008-06-29 Thread Stuart Malin
On Jun 29, 2008, at 7:05 AM, Scot t Anguish wrote: From: Scott Anguish [EMAIL PROTECTED] Subject: Re: mutableArrayForKeyValue Question (ignore other email) To: Alex Wait [EMAIL PROTECTED] Cc: cocoa-dev Cocoa-dev@lists.apple.com Message-ID: [EMAIL PROTECTED] Content-Type: text/plain; charset=US

mutableArrayForKeyValue Question

2008-06-28 Thread Alex Wait
I have successfully done some more bindings (they're so much fun ^_^ ) I am trying to modify the array controller programmatically and I'm running into problems using mutableArrayForKeyValue I am using this line id proxy = [controller mutableArrayValueForKey:@Person]; -- If you can't be

mutableArrayForKeyValue Question (ignore other email)

2008-06-28 Thread Alex Wait
Gmail sent an email on me while I was typing. No idea what happened! :) So please ignore the incomplete message. I have successfully done some more bindings (they're so much fun ^_^ ) I am trying to modify the array controller programmatically and I'm running into problems using

Re: mutableArrayForKeyValue Question (ignore other email)

2008-06-28 Thread mmalc crawford
On Jun 28, 2008, at 7:42 PM, Alex Wait wrote: I am trying to modify the array controller programmatically and I'm running into problems using mutableArrayForKeyValue I am using this line id proxy = [controller mutableArrayValueForKey:@Person]; when I do [proxy addObject:newPerson] I

Re: mutableArrayForKeyValue Question

2008-06-28 Thread Kyle Sluder
On Sat, Jun 28, 2008 at 10:39 PM, Alex Wait [EMAIL PROTECTED] wrote: I am trying to modify the array controller programmatically and I'm running into problems using mutableArrayForKeyValue I am using this line id proxy = [controller mutableArrayValueForKey:@Person]; ... and? You need to

Re: mutableArrayForKeyValue Question

2008-06-28 Thread Kyle Sluder
Gah! For some reason Gmail sorted this message as newer than your other, properly detailed message. I really apologize for that. --Kyle Sluder ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator

Re: mutableArrayForKeyValue Question (ignore other email)

2008-06-28 Thread Alex Wait
i've read most of http://developer.apple.com/documentation/Cocoa/Reference/ApplicationKit/Classes/NSArrayController_Class/Reference/Reference.html and I don't see what you mean. is there some magic key? why isn't it Person or array? I tried doing [controller addObject:newObj]; [table

Re: mutableArrayForKeyValue Question (ignore other email)

2008-06-28 Thread mmalc crawford
On Jun 28, 2008, at 8:51 PM, Alex Wait wrote: i've read most of http://developer.apple.com/documentation/Cocoa/Reference/ApplicationKit/Classes/NSArrayController_Class/Reference/Reference.html and I don't see what you mean. is there some magic key? No, there is no magic key. why isn't it

Re: mutableArrayForKeyValue Question (ignore other email)

2008-06-28 Thread Alex Wait
indeed it was. it's not needed. I took it out. On Sat, Jun 28, 2008 at 9:19 PM, mmalc crawford [EMAIL PROTECTED] wrote: On Jun 28, 2008, at 8:51 PM, Alex Wait wrote: i've read most of