2
我有一個UILongPressGestureRecognizer
設置與numberOfTouchesReguired = 2
。如何獲得視圖上每個手指的連續座標?從UILongPressGestureRecognizer的每個觸摸獲取座標
目前我有這個,但它似乎將所有觸摸的位置合併爲1個座標。
- (void)handleLongPress:(UILongPressGestureRecognizer *)sender { CGPoint locationInView = [sender locationInView:nil]; }
@Till長按會隨着手指移動發送連續事件。 – rmaddy 2013-03-10 01:52:27
@rmaddy我不好,你說得對。另外,允許的移動距離是可配置的。 – Till 2013-03-10 01:53:19