Risposte:
Usi NSNumber.
Ha metodi init ... e number ... che accettano valori booleani, proprio come gli interi e così via.
Dal riferimento alla 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
è uguale a[NSNumber numberWithBool:YES]
Se lo dichiari come letterale e stai usando clang v3.1 o superiore, dovresti usare @NO / @YES se lo dichiari come letterale. Per esempio
NSMutableDictionary* foo = [@{ @"key": @NO } mutableCopy];
foo[@"bar"] = @YES;
Per maggiori informazioni su questo:
NSDictionary
, non un file NSMutableDictionary
. Quindi l'assegnazione @YES
a foo[@"bar"]
non è possibile poiché @{ @"key": @NO }
non è modificabile.
Come ha sottolineato jcampbell1 , ora puoi usare la sintassi letterale per NSNumbers:
NSDictionary *data = @{
// when you always pass same value
@"someKey" : @YES
// if you want to pass some boolean variable
@"anotherKey" : @(someVariable)
};
Prova questo:
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'");
}
L'output sarà il seguente:
Boolean è TRUE per " Pratik "
Boolean è FALSE per " Sachin "
[NSNumber numberWithBool:NO]
e [NSNumber numberWithBool:YES]
.