我在初始化一个布尔数组时遇到了很多问题。使用时,NSLog
我不断得到(null)
. 我正在尝试设置piecesInPlace
具有 40 个 NO 的可变数组。我已经尝试更改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]);