didAddAnnotationViews 不总是被调用

发布于 2024-11-25 02:20:21 字数 777 浏览 1 评论 0原文

我将 MKAnnotation 委托处理程序类添加到 MKMapView 中,如下所示。

MapAnnotation *anAnnotation = [[[MapAnnotation alloc] initWithCoordinate:coord] autorelease];
[myMapView addAnnotation:anAnnotation];

MapAnnotation 实现了 MKAnnotation。

然而 didAddAnnotationViews 并不总是被调用。有时(很少)会,有时则不会。我检查了几个地方并且我已经正确使用了这个。它也取决于跨度属性吗?

MKCoordinateRegion 区域; MKCoordinateSpan 跨度; span.latitudeDelta=0.005f; span.longitudeDelta=0.005f;

CLLocationCoordinate2D location;

location.latitude = searchLocation.coordinate.latitude;
location.longitude = searchLocation.coordinate.longitude;

region.span=span;
region.center=location;

[myMapView setRegion:region animated:TRUE];
[myMapView regionThatFits:region];

这段代码有什么问题吗?

I added a MKAnnotation delegate handler class into a MKMapView like this.

MapAnnotation *anAnnotation = [[[MapAnnotation alloc] initWithCoordinate:coord] autorelease];
[myMapView addAnnotation:anAnnotation];

The MapAnnotation implements the MKAnnotation.

However didAddAnnotationViews doesnt get called always. Sometimes (rarely) it does and sometimes its not. I checked few places and I have used this correctly. Does it depends on span attributes as well?

MKCoordinateRegion region;
MKCoordinateSpan span;
span.latitudeDelta=0.005f;
span.longitudeDelta=0.005f;

CLLocationCoordinate2D location;

location.latitude = searchLocation.coordinate.latitude;
location.longitude = searchLocation.coordinate.longitude;

region.span=span;
region.center=location;

[myMapView setRegion:region animated:TRUE];
[myMapView regionThatFits:region];

Whats wrong with this code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猫九 2024-12-02 02:20:21

该委托方法是为当前可见的注释(即当前显示在屏幕上的地图区域内的注释)调用的。

This delegate method is called for annotations that are currently visible i.e. those that are within the map region that is currently displayed on the screen.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文