我想在屏幕上获取触摸的位置。我在互联网上搜索并找到以下代码:
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
let touch = touches.first!
let location = touch.location(in: nil)
print(location)
}
,但是当用户触摸诸如textField或tableViewCell之类的某些字段时,它不起作用。 我该怎么办?