我在初始化一系列bool时遇到了很多问题。使用NSLog
时,我会继续(null)
。我正在尝试用40个NO设置可变数组piecesInPlace
。我已尝试将setupArrayWithFalses
更改为YES
以进行测试,但仍然获得(null)
。
BOOL setupArrayWithFalses = NO;
for (int i=0; i<40; i++) {
[piecesInPlace addObject:[NSNumber numberWithBool:setupArrayWithFalses]];
}
NSLog(@"Value of object: %@", [piecesInPlace objectAtIndex:0]);
答案 0 :(得分:5)
piecesInPlace = [[NSMutableArray alloc] init];