2017-10-27 14 views

答えて

1

あなた クラスはUIViewのかUIWindowのサブクラスである場合は、それにメソッドを追加するクラス拡張を使用することができます。

extension YourClass { 
    override open func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) { 
     super.touchesBegan(touches, with: event) 
     for touch in touches{ 
      let locationUser = touch.location(in: self) 
     } 
     print("touchesBegan") 
    } 
} 
関連する問題