Swift の学習を始めたばかりで、タッチに応じて UIView を動かそうとしています。エラーが発生しexc_bad_instruction
ます。
var location = CGPoint(x: 0, y:0)
@IBOutlet weak var person: UIView!
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
let touch : UITouch! = touches.first
location = touch.location(in: self.view)
person.center = location
}