BOOL isnot=true;
for(BGAddressAnnotation * old in oldAnnot){
if(new.myBiz==old.myBiz){
//[self animationOutAndInBetweenNew:new andOld:old];
isnot=false;
}else{
}
}
起初我很困惑为什么我的程序员这样做而不是仅仅使用 NSArray containsObject。然后我意识到了。他不是在查看对象是否在数组中。
该数组的类型为 BGAddressAnnotation。每个都包含对 myBiz 的引用。他想知道该商业是否包含在 oldAnnot 旅馆中。
有没有更快的方法来使用说,keyPath,或者他的方式确实是方式