Re: boolean into NSDictionary
Re: boolean into NSDictionary
- Subject: Re: boolean into NSDictionary
- From: j o a r <email@hidden>
- Date: Mon, 2 Jul 2001 22:30:59 +0200
On mendag, juli 2, 2001, at 08:07 , Andreas Schweizer wrote:
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.
Have a look at NSNumber, it does exactly that!
example:
NSNumber *myWrappedBool = [NSNumber numberWithBool:YES];
Regards,
j o a r