I need to utilize an array of booleans in objective-c. I\'ve got it mostly set up, but the compiler throws a warning at the following statement:
[updated_use
From XCode 4.4 you can use Objective-C literals.
[updated_users replaceObjectAtIndex:index withObject:@YES];
Where @YES is equivalent of [NSNumber numberWithBool:YES]
@YES
[NSNumber numberWithBool:YES]