CLLocationCoordinate2D can't be instantiated
问题 I am trying to create some "CLLocation"s from data that I've read from a file. The first step is to instantiate a "CLLocationCoordinate2D" to be fed into the initializer for CLLocation. I'm trying out my ideas in a Playground and this very simple code generates a runtime error: import CoreLocation let lat = 48.8 let lon = -122.3 let point2D = CLLocationCoordinate2D(latitude: lat, longitude: lon) Error message is error: Execution was interrupted, reason: signal SIGABRT. The process has been