您好我想根据存储在数组中的纬度和经度值显示MKPinAnnotationView
,但我希望所有引脚不应同时显示。它应该是一个接一个,意味着当一个引脚出现一些延迟后出现另一个引脚。
提前致谢
答案 0 :(得分:0)
使用NSTimer完成此操作: 像这样:
-(Void)viewDidLoad{
_timer = [NSTimer scheduledTimerWithTimeInterval:1.0f
target:self
selector:@selector(_timerFired)
userInfo:nil
repeats:YES];
}
- (void)_timerFired
{
//Code to add the Annotation
// Completed the annotation, then nil the Timer
if (_timer != nil && <annotationArray_reached_end>)
{
[_timer invalidate];
_timer = nil;
}
}