私はswift 1.0では機能しましたが、swift2では機能しなかった関数 geocodeAddressString を使用しました。私のコードの何が問題なのか、どうすれば修正できるのか誰か教えてもらえますか? ありがとうございました!
geocoder.geocodeAddressString(address, {(placemarks: [AnyObject], error: NSError) -> Void in //Error: Missing argument for parameter 'completionHandler' in call
if let placemark = placemarks?[0] as? CLPlacemark {
let annotation = MKPointAnnotation()
let location:CLLocationCoordinate2D = CLLocationCoordinate2DMake(placemark.location.coordinate.latitude, placemark.location.coordinate.longitude)
annotation.coordinate = location
annotation.title = "\(StudentArray[student].firstName), \(StudentArray[student].lastName)"
annotation.subtitle = "\(StudentArray[student].grade)"
self.mapView.addAnnotation(annotation)
}
})