我有一個數組,我用下面的代碼中的布爾值填充。檢查整個布爾型的NSMutableArray
for(int i = 0; i < 15; i++){
int checkVal = [(NSNumber *)[__diceValue objectAtIndex:i] intValue];
if(checkVal == matchVal){
[_diceMatch replaceObjectAtIndex:i withObject:[NSNumber numberWithBool:y]];
}
}
什麼是最短的方式來寫一個條件來檢查數組「_diceMatch」所有真正的值?