Respuestas:
Utiliza NSNumber.
Tiene métodos init ... y number ... que toman valores booleanos, al igual que los números enteros, etc.
De la referencia de clase NSNumber :
// Creates and returns an NSNumber object containing a
// given value, treating it as a BOOL.
+ (NSNumber *)numberWithBool:(BOOL)value
y:
// Returns an NSNumber object initialized to contain a
// given value, treated as a BOOL.
- (id)initWithBool:(BOOL)value
y:
// Returns the receiver’s value as a BOOL.
- (BOOL)boolValue
NSDictionary *dictionary = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:YES], @"someKey", nil];
@YES
es lo mismo que[NSNumber numberWithBool:YES]
Si lo declara como literal y usa clang v3.1 o superior, debe usar @NO / @YES si lo declara como literal. P.ej
NSMutableDictionary* foo = [@{ @"key": @NO } mutableCopy];
foo[@"bar"] = @YES;
Para obtener más información al respecto:
NSDictionary
, no un NSMutableDictionary
. Por lo tanto, no es posible asignar @YES
a, foo[@"bar"]
ya @{ @"key": @NO }
que no es mutable.
Como señaló jcampbell1 , ahora puede usar la sintaxis literal para NSNumbers:
NSDictionary *data = @{
// when you always pass same value
@"someKey" : @YES
// if you want to pass some boolean variable
@"anotherKey" : @(someVariable)
};
Prueba esto:
NSMutableDictionary *dic = [[NSMutableDictionary alloc] init];
[dic setObject:[NSNumber numberWithBool:TRUE] forKey:@"Pratik"];
[dic setObject:[NSNumber numberWithBool:FALSE] forKey:@"Sachin"];
if ([dic[@"Pratik"] boolValue])
{
NSLog(@"Boolean is TRUE for 'Pratik'");
}
else
{
NSLog(@"Boolean is FALSE for 'Pratik'");
}
if ([dic[@"Sachin"] boolValue])
{
NSLog(@"Boolean is TRUE for 'Sachin'");
}
else
{
NSLog(@"Boolean is FALSE for 'Sachin'");
}
La salida será la siguiente:
Booleano es VERDADERO para ' Pratik '
Booleano es FALSO para ' Sachin '
[NSNumber numberWithBool:NO]
y [NSNumber numberWithBool:YES]
.