MKMapView didDeselectAnnotationView 与 UITableView 交互

发布于 2024-12-11 09:54:33 字数 793 浏览 0 评论 0原文

我的一个视图中有一个 MKMapView,上面有一些注释。还有一个隐藏的 UITableView,每个单元格显示每个注释的详细信息。当用户选择某个注释时,将出现 tableView 并选择特定的单元格。此外,当用户选择单元格时,特定注释也会被选中。

我希望视图具有以下行为:当选择注释并且用户点击地图时,tableView 将消失,但是当用户选择另一个注释时,tableView 将保持可见并更改所​​选索引。

问题出在 didDeselectAnnotationView 方法上。它在 didSelectAnnotationView 之前被调用,因此当您要检查的方法中时:

-  (void)mapView:(MKMapView *)mapview didSelectAnnotationView:(MKAnnotationView *)view
{
     if([mapView.selectedAnnotations count] == 0)
         [self hideTableView];
}

目前没有选定的注释,并且 tableView 始终隐藏。

我的问题是是否有办法让 didDeselectAnnotationView 区分点击的地图和选择另一个注释。

另外,有什么解释为什么在 iPhone 3G(4.2.1) 中 didDeselectAnnotationViewdidSelectAnnotationView 之后被调用?看起来很奇怪!

先感谢您!

I have a MKMapView in one of my views with some annotations on it. There is also a hiden UITableView with each cell presenting details of each annotation. When the user selects a certain annotation, the tableView appears and the specific cell gets selected. Also, when a user selects a cell the specific annotation gets selected.

I want the view to have the following behavior: when an annotation is selected and the user taps the map the tableView will disappear but when the user selects another annotation the tableView will stay visible and changes the selected index.

The problem is with the didDeselectAnnotationView method. It gets called before didSelectAnnotationView so when in the method you want to check:

-  (void)mapView:(MKMapView *)mapview didSelectAnnotationView:(MKAnnotationView *)view
{
     if([mapView.selectedAnnotations count] == 0)
         [self hideTableView];
}

there is no selected annotation at the moment and the tableView gets always hidden.

My question is whether there is a way for the didDeselectAnnotationView to distinguish between the map tapped and the selection of another annotation.

Also, is there any explanation why in an iPhone 3G(4.2.1) didDeselectAnnotationView gets called AFTER didSelectAnnotationView? It seems pretty strange!

Thank you in advance!

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

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

发布评论

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

评论(1

梦里兽 2024-12-18 09:54:33

我处理这个问题的方法如下......

- (void)mapView:(MKMapView *)mapview didDeselectAnnotationView:(MKAnnotationView *)view {
  [self performSelector:@selector(hideMyTableView) withObject:nil afterDelay:0.1];
}

- (void)mapView:(MKMapView *)mapview didDeselectAnnotationView:(MKAnnotationView *)view {
  [NSObject cancelPreviousPerformRequestsWithTarget:self];
}

这是什么,它会将 hideMyTableView 的调用排队 0.1 秒,如果 didSelect 方法触发,它会取消此请求,并且您的代码可以执行它需要执行的操作,如果 didSelect不会被调用,然后 hideMyTableView 将被调用。您可能需要将 0.1 增加到 0.5,但请先尝试 0.1。

The way I would approach this is as follows....

- (void)mapView:(MKMapView *)mapview didDeselectAnnotationView:(MKAnnotationView *)view {
  [self performSelector:@selector(hideMyTableView) withObject:nil afterDelay:0.1];
}

- (void)mapView:(MKMapView *)mapview didDeselectAnnotationView:(MKAnnotationView *)view {
  [NSObject cancelPreviousPerformRequestsWithTarget:self];
}

What this does it queues up the calling of hideMyTableView for 0.1 seconds, IF the didSelect method fires it cancels this request and your code can do what it needs to do, if the didSelect DOESN'T get called then hideMyTableView will be called. You may need to increase 0.1 to 0.5 but try 0.1 first.

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