Re: boolean into NSDictionary
Re: boolean into NSDictionary
- Subject: Re: boolean into NSDictionary
- From: Mark T <email@hidden>
- Date: Mon, 2 Jul 2001 15:55:45 -0400
Hi!
does anybody know what class to use when you want to store boolean values
into an NSMutableDictionary? I searched for a class like NSBoolean but
couldn't find one.
Thanks,
Andy
Try an NSNumber using
+ numberWithBool:(BOOL)value or
- initWithBool:(BOOL)value
Mark T.