前提・実現したいこと
swiftで位置と色を取りたいです。
しかし、今では位置と色の値は取れていますが、その値をoverride funcから画面遷移であるfuncに入れる事ができません。
swift12.2
発生している問題・エラーメッセージ
override funcから画面遷移のfuncへ値を渡しこともできません。
エラーメッセージ
①Method does not override any method from its superclass
②Cannot convert value of type 'Set<UITouch>.Type' to expected argument type 'Set<UITouch>'
③Cannot convert value of type 'UIEvent?.Type' to expected argument type 'UIEvent?'
該当のソースコード
①override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) ->[Double]
②画面遷移のfunc
@IBAction func Next(_ sender: UIButton) {
var r2l:[Double] = touchesBegan(Set<UITouch>, with: UIEvent?)
よろしくお願いします。
あなたの回答
tips
プレビュー