I just updated XCode to 6.3 and now I am receiving the below error: MKPointAnnotation does not have a member named \'setCoordinate\'.
Not sure where it went, or if w
As stated in the iOS 8.3 API Diffs in the MapKit module, the setCoordinate
method was removed:
Removed MKAnnotation.setCoordinate(CLLocationCoordinate2D)
Fortunately, you must now use the simpler assignment syntax (which was already available in previous versions of Swift and the same could be done in Objective-C):
annotation.coordinate = location