Re: CFBoolean

2008-08-24 Thread Chris Idou
--- On Sun, 8/24/08, Phil <[EMAIL PROTECTED]> wrote: > > I'm curious as to why you need a boolean, rather than > just what > -setBool:forKey: gives you? Because I have an array containing dict

Re: CFBoolean

2008-08-24 Thread Phil
On Mon, Aug 25, 2008 at 1:33 PM, Chris Idou <[EMAIL PROTECTED]> wrote: > How do I create a property in the user defaults of type boolean? > > Internally it seems to use a NSCFBoolean which is an undocumented type. If I > make the assumption it is the same as a CFBoolean, and overlooking the > odd

Re: CFBoolean

2008-08-24 Thread Nathan Kinsinger
On Aug 24, 2008, at 7:33 PM, Chris Idou wrote: How do I create a property in the user defaults of type boolean? Internally it seems to use a NSCFBoolean which is an undocumented type. If I make the assumption it is the same as a CFBoolean, and overlooking the oddness of having to fall back

Re: CFBoolean

2008-08-24 Thread Sherm Pendley
On Sun, Aug 24, 2008 at 9:33 PM, Chris Idou <[EMAIL PROTECTED]> wrote: > How do I create a property in the user defaults of type boolean? [[NSUserDefaults standardUserDefaults] setBool:TRUE forKey:@"SomeBoolKey"]; sherm-- -- Cocoa programming in Perl: http://camelbones.sourceforge.net _

Re: CFBoolean

2008-08-24 Thread Kyle Sluder
On Sun, Aug 24, 2008 at 9:33 PM, Chris Idou <[EMAIL PROTECTED]> wrote: > How do I create a property in the user defaults of type boolean? +[NSNumber numberWithBool:] --Kyle Sluder ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not po

Re: CFBoolean

2008-08-24 Thread Jason Coco
On Aug 24, 2008, at 21:33 , Chris Idou wrote: How do I create a property in the user defaults of type boolean? Internally it seems to use a NSCFBoolean which is an undocumented type. If I make the assumption it is the same as a CFBoolean, and overlooking the oddness of having to fall back