手指滑过时,“快速按钮”就像一个传感器

时间:2018-07-02 12:47:29

标签: ios swift button touch sensor

我正在尝试制作类似这样的应用程序,但是我找不到如何做的方法。我已经尝试了很多东西,但是它没有用,或者因为我是新手,所以无法使它起作用。 这是视频参考:https://youtu.be/6cCV_YsbUq0?t=2s

感谢您的时间

1 个答案:

答案 0 :(得分:0)

我不确定,但是您可以尝试触摸屏幕的x和y位置,按照此代码查找x和y位置。

override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
    if let touch = touches.first {
        let position = touch.location(in: self.view)
        print(position.x)
        print(position.y)
    }
}