中心位置在mapView
的顶部。有什么办法可以使它居中吗?这是我当前正在使用的代码,但是没有运气:
let mapInsets = UIEdgeInsets(top: 0.0, left: 0.0, bottom: 150.0, right: 0.0)
mapView.padding = mapInsets
答案 0 :(得分:0)
只需在顶部和底部或左侧和右侧中心位置设置相同的填充即可。
let mapInsets = UIEdgeInsets(top: 150.0, left: 0.0, bottom: 150.0, right: 0.0)
mapView.padding = mapInsets