Respostas:
Você usa NSNumber.
Possui métodos init ... e number ... que usam booleanos, assim como faz inteiros e assim por diante.
Da referência de classe NSNumber :
// Creates and returns an NSNumber object containing a
// given value, treating it as a BOOL.
+ (NSNumber *)numberWithBool:(BOOL)value
e:
// Returns an NSNumber object initialized to contain a
// given value, treated as a BOOL.
- (id)initWithBool:(BOOL)value
e:
// Returns the receiver’s value as a BOOL.
- (BOOL)boolValue
NSDictionary *dictionary = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:YES], @"someKey", nil];
@YES
é o mesmo que[NSNumber numberWithBool:YES]
Se você estiver declarando-o como literal e estiver usando o clang v3.1 ou superior, deverá usar @NO / @YES se estiver declarando-o como literal. Por exemplo
NSMutableDictionary* foo = [@{ @"key": @NO } mutableCopy];
foo[@"bar"] = @YES;
Para mais informações sobre isso:
NSDictionary
, não um NSMutableDictionary
. Portanto, atribuir @YES
a foo[@"bar"]
não é possível, pois @{ @"key": @NO }
não é mutável.
Como jcampbell1 apontou, agora você pode usar a sintaxe literal para NSNumbers:
NSDictionary *data = @{
// when you always pass same value
@"someKey" : @YES
// if you want to pass some boolean variable
@"anotherKey" : @(someVariable)
};
Experimente isto:
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'");
}
A saída será a seguinte:
Boolean é TRUE para ' Pratik '
Booleano é FALSO para ' Sachin '
[NSNumber numberWithBool:NO]
e [NSNumber numberWithBool:YES]
.