MKMapView didDeselectAnnotationView 与 UITableView 交互
我的一个视图中有一个 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) 中 didDeselectAnnotationView
在 didSelectAnnotationView
之后被调用?看起来很奇怪!
先感谢您!
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我处理这个问题的方法如下......
这是什么,它会将 hideMyTableView 的调用排队 0.1 秒,如果 didSelect 方法触发,它会取消此请求,并且您的代码可以执行它需要执行的操作,如果 didSelect不会被调用,然后 hideMyTableView 将被调用。您可能需要将 0.1 增加到 0.5,但请先尝试 0.1。
The way I would approach this is as follows....
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.