Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以检测注释气球中的点击?我希望当用户点击注释时,它会显示一些信息,如果用户想查看他应该在气球中再次点击的所有信息(如 Android)。我找到了如何实施
-(void)mapView:MKMapView*)mapView didSelectAnnotationView:MKAnnotationView *)view
但对我想做的事一无所知,所以有可能吗?
如果您将 annotationView 设置为包含附件按钮,这在 iOS 上很正常,因此用户会感觉很舒服,那么当用户点击附件时,将在 mapview 的委托上调用此函数
- (void)mapView:(MKMapView *)map annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control;
从中您可以确定按下了哪个注释以及如何处理它