我的 iOS 应用程序只有一个视图,其中有一个 mapView。添加点击或长按识别器时,会正确调用事件。但不是捏事件......
UIPinchGestureRecognizer *handlePinchGesture=[[UIPinchGestureRecognizer alloc]initWithTarget:mapView action:@selector(handleGesture:)];
[mapView addGestureRecognizer:handlePinchGesture];
知道我应该添加什么吗?谢谢。