1
WKInterfaceMap
定義了兩種設置地圖可見部分的方法:setVisibleMapRect
和setRegion
。兩者的描述非常相似,都以相同的方式表現出來(據我所知)。WatchKit:setVisibleMapRect與WKInterfaceMap中的setRegion
這兩種方法有什麼區別?
爲了增加混亂,WatchKit Catalog示例應用程序使用它們無論是在方法之一:
...
[self.map setVisibleMapRect:MKMapRectMake(newCenterPoint.x, newCenterPoint.y, self.currentSpan.latitudeDelta, self.currentSpan.longitudeDelta)];
[self.map setRegion:region];
...
唯一的區別是,如果你喜歡用像素或座標工作,結果是一樣的 –
謝謝!如果你在答案中鏈接了一個來源,我會接受它。 – vektor