0
Help with Swift dragging code
I have this dragging code, it "drags" my image fine, but it ALSO "warps" my image to the position I touch. How can I make the image ONLY drag and not warp? override function touchedMoved(_ touches: Set<UITouch>, with event: UIEvent?) { for touch in touches { let location = touch.location(in: self) Image.position.x = location.x Image.position.y = location.y } } Sorry I am very new to Swift
1 Respuesta
+ 1
You should google search this complex question