user3745888
user3745888

Reputation: 6253

How to block interaction of showsUserLocation in mapView?

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

Answers (1)

tudoricc
tudoricc

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

Related Questions