有没有一种方法可以从mkmapview的底部操纵、移动苹果标识和“合法”文本?
有点像谷歌地图上的东西。

发布于 2019-12-03 17:12:41
您可以通过设置layoutMargins的mapView来更改它。例如,这会将其从底部移出:
mapView.layoutMargins.bottom = -100 // removes the 'legal' text
mapView.layoutMargins.top = -100 // prevents unneeded misplacement of the camerahttps://stackoverflow.com/questions/59161733
复制相似问题