我正在设置一个应该在以下时间调用的动画:
要处理1和3,我有:
[self.theMapView setCenterCoordinate:[BGMDCachedProperties singleton].mapCenterLocation.coordinate animated:YES];
现在,我可以在此之后调用“doanimation”。
问题是如果[self.theMapView setCenterCoordinate:[BGMDCachedProperties singleton] .mapCenterLocation.coordinate animated:YES];改变区域然后已经调用了doanimation。再次调用doanimation会使它被调用两次。
我想要一次性调用doanimation,而不是快速连续调用两次。