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.
我有一个 mapView,它在 Web 服务的帮助下加载注释。我在一个数组中解析 json 中的数据并获取每个注释的值。
但是现在,我想在选择中发送注释的信息。正如我所想,它更像是 UITableView 中称为 DidSelectRow 的部分......
我怎么能做到这一点?
如果你的意思是当用户点击 mapView 中的一个注释时,你有一个委托方法。来自 MKMapViewDelegate 协议参考
mapView:didSelectAnnotationView:
将您的视图控制器设置为您的 mapView 的委托,然后只需使用此委托方法在用户点击您的注释之一时收到通知。
链接到关于 MKMapViewDelegate 协议的 Apple 文档