如何从位置获取坐标我在每个对象上甚至在文本字段上都触摸屏

时间:2019-01-28 08:35:48

标签: swift

我想在屏幕上获取触摸的位置。我在互联网上搜索并找到以下代码:

 override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
        let touch = touches.first!
        let location = touch.location(in: nil)
        print(location)
    }

,但是当用户触摸诸如textField或tableViewCell之类的某些字段时,它不起作用。 我该怎么办?

0 个答案:

没有答案