Re: description and proxy objects

2008-06-29 Thread Torsten Curdt
[[[accountsController selectedObjects] objectAtIndex:0] description]; Ah! [[accountsController selection] valueForKey:@"description"]; Doh! ...of course :) So obvious. Thanks, guys! cheers -- Torsten ___ Cocoa-dev mailing list (Cocoa-dev@lists.a

Re: description and proxy objects

2008-06-27 Thread Mike Abdullah
On 27 Jun 2008, at 00:36, Torsten Curdt wrote: I am getting the selected object from a controller (that is using bindings) NSDictionary *accountSettings = [accountsController selection]; The returned object is a proxy object. But why isn't the [accountSettings description] passed on? Inst

Re: description and proxy objects

2008-06-26 Thread Ken Thomases
On Jun 26, 2008, at 8:05 PM, Kyle Sluder wrote: On Thu, Jun 26, 2008 at 7:36 PM, Torsten Curdt <[EMAIL PROTECTED]> wrote: I am getting the selected object from a controller (that is using bindings) NSDictionary *accountSettings = [accountsController selection]; The returned object is a pro

Re: description and proxy objects

2008-06-26 Thread Kyle Sluder
On Thu, Jun 26, 2008 at 7:36 PM, Torsten Curdt <[EMAIL PROTECTED]> wrote: > I am getting the selected object from a controller (that is using bindings) > > NSDictionary *accountSettings = [accountsController selection]; > > The returned object is a proxy object. But why isn't the [accountSettings

Re: description and proxy objects

2008-06-26 Thread Omar Qazi
On Jun 26, 2008, at 4:36 PM, Torsten Curdt wrote: I am getting the selected object from a controller (that is using bindings) NSDictionary *accountSettings = [accountsController selection]; The returned object is a proxy object. But why isn't the [accountSettings description] passed on? I

description and proxy objects

2008-06-26 Thread Torsten Curdt
I am getting the selected object from a controller (that is using bindings) NSDictionary *accountSettings = [accountsController selection]; The returned object is a proxy object. But why isn't the [accountSettings description] passed on? Instead of the print out of the contents of the dicti