Avatar
Avatar
omochimetaru
locationもオーバライドですね。 座標値の計算はこれ使うと良いです。 https://developer.apple.com/documentation/uikit/uiview/1622442-convert
locationは関数として設定されていますが、自分で設定するにはどんな感じでオーバーライドすればいいと思いますか? 以下のようにpropertyがある前提でオーバーライドしようとするとエラーが出ました var touchedLocation: CGPoint override var location: CGPoint{ get{ return touchedLocation } set(p){ touchedLocation = p } } たくさん質問に答えていただきありがとうございます (edited)