xamarin.ios:UILongPressGestureRecognizer始终被调用两次

时间:2018-10-05 01:14:54

标签: xamarin xamarin.ios

我是Xamarin的新手,我有一个困扰我很长时间的问题。我在UILongPressGestureRecognizer上定义了一个Imageview。长按imageview时,它将提醒图像信息。但是,长按该方法将被调用两次。这不是我期望的我不确定这是我的错误还是错误。是否提前?

UILongPressGestureRecognizer longPress = new UILongPressGestureRecognizer(this, new Selector("LongPressGestureRecognizerAction"));
imageView.AddGestureRecognizer(longPress);

[Export("LongPressGestureRecognizerAction")]
public void LongPressGestureRecognizerAction()
{

  //. . .

}

0 个答案:

没有答案