Swift 2: Cannot invoke 'addAnnotation'

202 Views Asked by At

Using XCode v7.0 Beta 4

I attempt to add a visible pin to that map via map.addAnnotation(myareahere) as you can see here:

    let myareahere = CLLocationCoordinate2DMake(51.5072, -0.1275)

    let annotation = MKPointAnnotation()
    annotation.coordinate = myareahere
    annotation.title = "Name of My Area"
    annotation.subtitle = "Sleep Here"

    map.addAnnotation(myareahere)

This is all of course contained within the viewDidLoad function. The error I'm given on the last line (map.addAnnotation(myareahere)) is "Cannot invoke 'addAnnotation' with an argument of list type (CLLocationCoordinates2D)". This is perplexing to me for I do not know what else I would use.

2

There are 2 best solutions below

3
On

The error is telling you that you're invoking addAnnotation(_:) with the wrong argument type. You're passing a CLLocationCoordinate2D to the method, you mean to pass annotation (your MKPointAnnotation instance).

0
On

Seems like a simple typo. Try

let annotation = MKPointAnnotation()
annotation.coordinate = myareahere
annotation.title = "Name of My Area"
annotation.subtitle = "Sleep Here"

map.addAnnotation(annotation)

.