iOS MKMapKit 区域DidChangeAnimated
我想确定 MKMapViewDelegate 委托方法:
- (void)mapView:(MKMapView *)mapView regionDidChangeAnimated:(BOOL)animated
像 isCooperativeInRegion
这样的函数会派上用场。
干杯。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以查看
MKMapRectContainsPoint
。您可以使用MKMapView
对象的visibleMapRect
属性获取MKMapRect
,并使用 获取MKMapPoint
href="http://developer.apple.com/library/ios/documentation/MapKit/Reference/MapKitFunctionsReference/Reference/reference.html#//apple_ref/doc/uid/TP40008209-CH2-SW11" rel="nofollow" >MKMapPointFor坐标
。You can look at
MKMapRectContainsPoint
. You can get theMKMapRect
usingvisibleMapRect
property of theMKMapView
object andMKMapPoint
usingMKMapPointForCoordinate
.