我在 Xamarin Studio 中使用 MonoTouch 来读取 MonoGame 中的手势。我添加了以下代码部分来读取手势。
while(TouchPanel.IsGestureAvailable)
{
GestureSample sample = TouchPanel.ReadGesture();
}
在程序开始时添加了以下内容:
TouchPanel.EnabledGestures = GestureType.Tap |
GestureType.Hold |
GestureType.None;
但是当我在模拟器或设备上触摸屏幕时,它会完全锁定并且对调试没有响应。
什么可能导致这种锁定?我错过了代码中的某些内容吗?