我做错了什么
[mutableArry addObject:[NSNumber numberWithInt:questionNumber]];
NSLog(@"mutableArry=%@",mutableArry);
NSLog(@" question not complete count=%d",mutableArry.count);
if (mutableArry.count==25) {
NSLog(@"25 question complete%d",mutableArry.count);
}
NSString *str= [NSString stringWithFormat:@"%d",questionNumber];
NSLog(@"str=%@",str);
// array = [NSArray arrayWithObjects: @"Nicola", @"Margherita", @"Luciano", @"Silvia", nil];
if ([mutableArry containsObject:str]) { //YES
NSLog(@"Results");
}