出于某种原因,这个if语句给了我一个“Expected:before”令牌。
if ([ [mine commodity] isEqualToString:@"Gold"] && [gold == YES])
{
[tempMine setAnnotationType:iProspectLiteAnnotationTypeGold];
[mapView addAnnotation:tempMine];
}
这里有一些我没见过的错字吗?
答案 0 :(得分:5)
[gold == YES]
应为gold == YES
。方括号用于方法调用,==
不是方法。