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。到目前为止,我已经能够在地图视图上显示所有位置,但不知道如何在单击的位置上显示标注。
请帮忙。
谢谢,
我假设您有办法知道表格视图中的哪一行对应于哪个 MKAnnotation。在这种情况下,您可以使用
- (void)selectAnnotation:(id < MKAnnotation >)annotation animated:(BOOL)animated
以编程方式选择您感兴趣的注释。