1
touchesBegan()メソッドをクラスに追加するにはどうすればよいですか?ここでtochesBegan()メソッドをクラスの拡張として使用するにはどうすればよいですか?
は私の方法である:
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
for touch in touches{
let locationUser = touch.location(in: self)
}}