Я не уверен, но вы можете попробовать с касанием положения 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)
}
}