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
You can either store NSNumbers:
NSNumbers
[updated_users replaceObjectAtIndex:index withObject:[NSNumber numberWithBool:YES]];
or use a C-array, depending on your needs:
BOOL array[100]; array[31] = YES;