난 그냥 스위프트 배우기 시작했습니다 및 터치에 대한 응답으로 UIView 이동하려고했습니다. exc_bad_instruction
오류가 발생합니다.exc_bad_instruction 때 cgpoint UIView 센터를 설정할 때
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
}
오류를 던지고 라인 : –
@ Mr.UB 제 6 행 –
'center'의 타입은 무엇이고'print (location)'의 출력은 무엇입니까? –