为什么会出现这个错误?我认为我已经关闭了所有括号。这是代码:
int i=0;
while(i<count){
if([[ageMatch rangeOfString:age].location != NSNotFound] && [[glassesSex rangeOfString:gender].location !=NSNotFound] && [[faceMatch rangeOfString:shape].location != NSNotFound] ){ //Expected identifier
[arrayNuovo insertObject:dictionary atIndex:i];
}
i++;
}