我在我的应用中使用mkmapview。我在我的应用程序中显示注释。但是注释标题没有显示在我的地图视图中。 这是我的代码:
func loadMaps(){
let shopsArray = self.locationlatlong as NSArray
print(shopsArray)
for shop in shopsArray {
let annotation = MKPointAnnotation()
let mylatitude : String = shop["letitude"] as! String
let string = NSString(string: mylatitude)
let mylatitudeFinal = string.doubleValue
print(mylatitude)
print(mylatitudeFinal)
let mylongitude : String = shop["longitude"] as! String
let string123 = NSString(string: mylongitude)
let mylongitudeFinal = string123.doubleValue
let location = CLLocationCoordinate2D(
latitude: mylatitudeFinal,
longitude: mylongitudeFinal
)
print(location)
annotation.coordinate = location
annotation.title = shop["firstname"] as? String
mapView?.addAnnotation(annotation)
}
那么如何在地图中显示注释标题?