I created 100 annotations using this code :
CLGeocoder().geocodeAddressString("Trieste, Via Svevo", completionHandler: {(placemarks, error)->Void in
if error == nil {
placemark = placemarks[0] as CLPlacemark
self.puntoCercato2.coordinate = placemark.location.coordinate
self.puntoCercato2.title = "Fermata di Via Svevo"
self.puntoCercato2.subtitle = "1-8-29-B"
self.myMap.addAnnotation(self.puntoCercato2)
}else{
println("2")
}
})
iOS 8 all pins are show [1]: https://i.stack.imgur.com/eh8Le.jpg
iOS 7 only the first 50 [2]: https://i.stack.imgur.com/g8m7j.jpg
Why??