Как настроить оповещения из Аннотации Callout Xcode 9 - PullRequest
0 голосов
/ 31 января 2019

Я пытаюсь, чтобы кнопка в выноске аннотации выдавала предупреждение при нажатии.Компилятор не выдает ошибок, но кажется, что программа никогда не входит в эту функцию mapView.

Вот функция:

extension ViewController{
func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {
    // 2
    guard let annotation = annotation as? parkingZone else { return nil }
    // 3
    let identifier = "marker"
    var view: MKMarkerAnnotationView
    // 4
    if let dequeuedView = mapView.dequeueReusableAnnotationView(withIdentifier: identifier)
        as? MKMarkerAnnotationView {
        dequeuedView.annotation = annotation
        view = dequeuedView
    } else {
        // 5
        view = MKMarkerAnnotationView(annotation: annotation, reuseIdentifier: identifier)
        view.markerTintColor = .black
        view.canShowCallout = true
        view.calloutOffset = CGPoint(x: -5, y: 5)
        view.rightCalloutAccessoryView = UIButton(type: .detailDisclosure)
    }
    return view
}
func mapView(_ mapView: MKMapView, annotationView view: MKAnnotationView, vc: UIViewController, calloutAccessoryControlTapped control: UIControl) {
    print("Button Press")
    let alertController = UIAlertController(title: "Hello", message: "This will start alerts", preferredStyle: .alert)
    let cancelAction = UIAlertAction(title: "OK", style: .cancel, handler: nil)
    alertController.addAction(cancelAction)
    vc.present(alertController, animated: true, completion: nil)
}
}

1 Ответ

0 голосов
/ 31 января 2019

Проверьте подпись вашего calloutAccessoryControlTapped метода, у вас есть дополнительный параметр для vc: UIViewController.Ваш метод должен точно соответствовать сигнатуре метода делегата.

func mapView(_ mapView: MKMapView, annotationView view: MKAnnotationView, calloutAccessoryControlTapped control: UIControl) {
    print("Button Press")
    let alertController = UIAlertController(title: "Hello", message: "This will start alerts", preferredStyle: .alert)
    let cancelAction = UIAlertAction(title: "OK", style: .cancel, handler: nil)
    alertController.addAction(cancelAction)
    self.present(alertController, animated: true, completion: nil)
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...