使用MKMapView
我有以下问题。
let mapRectangle = CGRect(....)
var mapOne = MKMapView(frame: mapRectangle)
... do things with mapOne, setting mapOne.region, rotating it ....
.... later in the code :
var mapTwo = MKMapView(frame: mapRectangle)
mapTwo.setRegion(mapOne.region, animated: false)
在这里,我希望mapTwo显示与mapOne之前所做的相同的事情。 但事情并非如此。
我注意到如果mapOne已经旋转,那么mapTwo就不再显示相同的图像了。
我需要在代码中添加什么,以便mapTwo显示与mapOne相同的图像?