How to store a BOOL as NSNumber
You can create an NSNumber with a BOOL like this: BOOL myBool = YES; NSNumber *boolNumber = [NSNumber numberWithBool:myBool]; NSLog(@”boolNumber is %@”, boolNumber); // gives 1 for YES and 0 for NO It is technically the equivalent of creating an NSNumber with a literal @1 or @0. To turn the NSNumber back into a BOOL […]