I have a mapview that is being clipped into a circle by the following code.
roundMapView.layer.cornerRadius = roundMapView.frame.size.width/2
roundMapView.clipsToBounds = true
roundMapView.layer.borderWidth = 5.0
The problem I'm having is that outside of the circle, if I tap in the bottom left area, it will send me to the "legal" disclaimer that appears on the map. It seems the map's "Legal" link is clickable, even if it isn't inside the clipped circular mask.
Any way to stop this from happening? It is right next to a button on my UI and is really annoying when it is clicked accidentally.
EDIT: Uploaded two images: One is of the "legal" link I am talking about, the other shows a red dashed circle where the link is clickable even though it isn't in the clip bounds of the mapView.
http://s27.postimg.org/ustcejmcf/Screen_Shot_2015_06_30_at_7_21_51_PM.png
http://s27.postimg.org/f623168kf/Screen_Shot_2015_06_30_at_7_49_43_PM.png