Подтвердить что ты не робот

UISwipeGestureRecognizer Длина прокрутки

Любая идея, если есть способ получить длину жестового салфетки или касаний, чтобы я мог рассчитать расстояние?

4b9b3361

Ответ 1

Невозможно получить дистанцию ​​от жестов салфетки, потому что SwipeGesture запускает метод, когда вы можете получить доступ к местоположению ровно один раз, когда жест закончился.
Возможно, вы хотите использовать UIPanGestureRecognizer.

Если вам удастся использовать жест панорамы, вы сохраните начальную точку панорамирования, и если панорама закончится, вычислите расстояние.

- (void)panGesture:(UIPanGestureRecognizer *)sender {
    if (sender.state == UIGestureRecognizerStateBegan) {
        startLocation = [sender locationInView:self.view];
    }
    else if (sender.state == UIGestureRecognizerStateEnded) {
        CGPoint stopLocation = [sender locationInView:self.view];
        CGFloat dx = stopLocation.x - startLocation.x;
        CGFloat dy = stopLocation.y - startLocation.y;
        CGFloat distance = sqrt(dx*dx + dy*dy );
        NSLog(@"Distance: %f", distance);
    }
}

Ответ 2

В Свифте

 override func viewDidLoad() {
    super.viewDidLoad()

    // add your pan recognizer to your desired view
    let panRecognizer = UIPanGestureRecognizer(target: self, action:  #selector(panedView))
    self.view.addGestureRecognizer(panRecognizer)

}

   @objc func panedView(sender:UIPanGestureRecognizer){
        var startLocation = CGPoint()
        //UIGestureRecognizerState has been renamed to UIGestureRecognizer.State in Swift 4
        if (sender.state == UIGestureRecognizer.State.began) {
            startLocation = sender.location(in: self.view)
        }
        else if (sender.state == UIGestureRecognizer.State.ended) {
            let stopLocation = sender.location(in: self.view)
            let dx = stopLocation.x - startLocation.x;
            let dy = stopLocation.y - startLocation.y;
            let distance = sqrt(dx*dx + dy*dy );
            NSLog("Distance: %f", distance);

        if distance > 400 {
            //do what you want to do
        }
    }
}

Надеюсь, что это поможет вам всем пионерам Swift

Ответ 3

Для тех из нас, кто использует Xamarin:

void panGesture(UIPanGestureRecognizer gestureRecognizer) {
    if (gestureRecognizer.State == UIGestureRecognizerState.Began) {
        startLocation = gestureRecognizer.TranslationInView (view)
    } else if (gestureRecognizer.State == UIGestureRecognizerState.Ended) {
        PointF stopLocation = gestureRecognizer.TranslationInView (view);
        float dX = stopLocation.X - startLocation.X;
        float dY = stopLocation.Y - startLocation.Y;
        float distance = Math.Sqrt(dX * dX + dY * dY);
        System.Console.WriteLine("Distance: {0}", distance);
    }
}

Ответ 4

Вы можете сделать это стандартным способом: запомнить сенсорную точку touchBegin и сравнить точку с touchEnd.

Ответ 5

func swipeAction(gesture: UIPanGestureRecognizer) {
    let transition = sqrt(pow(gesture.translation(in: view).x, 2)
                     + pow(gesture.translation(in: view).y, 2))
}

Ответ 6

У меня есть реализация, аналогичная ответу в swift, который различает перетаскивание и пролистывание, вычисляя расстояние относительно контейнера и скорость пролистывания.

@objc private func handleSwipe(sender: UIPanGestureRecognizer) {
    if (sender.state == .began) {
        self.swipeStart.location = sender.location(in: self)
        self.swipeStart.time = Date()
    }
    else if (sender.state == .ended) {
        let swipeStopLocation : CGPoint = sender.location(in: self)
        let dx : CGFloat = swipeStopLocation.x - swipeStart.location.x
        let dy : CGFloat = swipeStopLocation.y - swipeStart.location.y
        let distance : CGFloat = sqrt(dx*dx + dy*dy );
        let speed : CGFloat = distance / CGFloat(Date().timeIntervalSince(self.swipeStart.time))
        let portraitWidth = min(self.frame.size.width, self.frame.size.height)
        print("Distance: \(distance), speed: \(speed), dy: \(dy), dx: \(dx), portraitWidth: \(portraitWidth), c1: \(distance >  portraitWidth * 0.4), c2: \(abs(dy) < abs(dx) * 0.25), c3: \(speed > portraitWidth * 3.0) ")
        if distance >  portraitWidth * 0.4 && abs(dy) < abs(dx) * 0.25 && speed > portraitWidth * 3.0 {
            if dx > 0 {
                delegate?.previousAssetPressed(self)
            }else{
                delegate?.nextAssetPressed(self)
            }
        }
    }
}