我在地图上有一个图钉,我想在经过一定时间后将其移除。我已经实现了所有适当的协议来放置注释。只是不确定在哪里可以检查时间变量的值是否>=
为一定数量。
var timer = NSTimer()
let annotation = MKPointAnnotation()
var time = 0
//按钮按下创建一个引脚
@IBAction func buttonPressed(sender: AnyObject) {
func timerFunc() {
time++
}
annotation.coordinate = location
annotation.title = "Place"
annotation.subtitle = "Description"
map.addAnnotation(annotation)
timer = NSTimer.scheduledTimerWithTimeInterval(1, target: self, selector: Selector("timerFunc"), userInfo: nil, repeats: true)
}
if time >= 5 {
timer.invalidate()
}
}
现在看来我需要在某个地方放置这样的东西:
if time >= 5 {
map.removeAnnotation(annotation)
}