How to reposition compass of MKMapView?

前端 未结 3 1998
说谎
说谎 2021-01-19 10:38

I want to move the MKMapView compass. I wanted to get a reference for it by something like this:

let compassView = mapView.subviews.filter {$0 is NSClassFrom         


        
3条回答
  •  独厮守ぢ
    2021-01-19 10:47

    For iOS 11 and above, use MKCompassButton.

    let compass = MKCompassButton(mapView: mapView)
    

提交回复
热议问题