我想檢測UITouch
事件visible.When begins.Currently觸摸事件,我使用下面的代碼來檢測下面的代碼觸摸location.From,我也能打印觸摸location.Any,幫助將不勝感激。如何檢測斯威夫特UITouch位置可見3
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?)
{
if let touch = touches.first {
let position :CGPoint = touch.location(in: view)
print(position.x)
print(position.y)
}
}
注:我不是畫線或類似的東西繪圖app.I,只是想看看觸摸事件發生visibly.When。
在此先感謝。
你的意思是你想畫一個圓或什麼東西來表明觸摸的位置? – Sweeper