Reputation: 6253
I have
self.mapView.showsUserLocation = true
in my mapView, and this show a blue circle in my current location, but if I press this circle, this show a message "Current location!. And I dislike show this.. how can I idsabled this message? Thanks!
Upvotes: 0
Views: 118
Reputation: 729
If I understand you correctly you want to disable the title of the annotation of the user location
self.mapView.userLocation.title = ""
IS this what you wanted?
Upvotes: 1