我在ViewController
课程的以下语句中收到运行时错误。这看起来很简单,但后来有大量的搜索和视频,我无法弄清楚我做错了什么。
class ViewController: UIViewController {
// Main image view controller
@IBOutlet var drawing_ImageView: UIImageView!
// store a point coordinate value based on screen touch
var start = CGPoint(x: 0, y:0)
}
var start = CGPoint(x: 0, y:0)
行会引发错误。我也尝试过:
var start: CGPoint
但这也会引发错误。我错过了什么?不会抛出构建或编译错误。
libc++abi.dylib: terminating with uncaught exception of type NSException
(lldb)