处理LongPressGesture:移动鼠标时只设置一个引脚

时间:2012-10-14 21:13:58

标签: ipad mkmapview

我正在使用handleLongPressGesture函数在MKMap上设置一个引脚。但是当我长按并移动时,我的地图上会出现很多针脚。

我可以做些什么来阻止这个?

祝你好运

1 个答案:

答案 0 :(得分:0)

您必须检查状态,如...

- (void)longPressGestureDetected:(id)sender
{
    UILongPressGestureRecognizer* gesture = (UILongPressGestureRecognizer*)sender;
    UIGestureRecognizerState state = [gesture state];
    if (state == UIGestureRecognizerStateBegan) {
        set a pin here.
    }
}