MKAnnonationView 点击问题
我想通过点击 MKMapView 上的 MKAnnotationView 导航到下一堂课。我该如何做到这一点,请为此提供一些示例代码。
我已经完成了这段代码..解释如下..
- (void)mapView:(MKMapView *)mapView1 didSelectAnnotationView:(MKAnnotationView *)customAnnotationView
{
//Here Push to another view controller
}
一个问题是,当单击一个项目时,此方法会调用,它将导航到其他类,但当我回来并再次点击同一项目时,此方法不会被调用。
请帮我解决这个问题...
提前致谢...
I want to navigate to next class through tap on MKAnnotationView on MKMapView. How can I do this plz give some sample code for this.
I had done this code..explained below..
- (void)mapView:(MKMapView *)mapView1 didSelectAnnotationView:(MKAnnotationView *)customAnnotationView
{
//Here Push to another view controller
}
One problem is that when clicking on one item, this method calls and It will navigate to other class but when I come back and again tap on the same item this method not called.
Please help me to solve me this problem...
Thanks in advance...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要实现此方法:-
编辑:-
您需要实现以下方法。
上一篇:-
在你的
- (MKAnnotationView *) mapView:(MKMapView *)mapView viewForAnnotation:(id) 注释
方法you need to implement this method:-
edited:-
you need to implement following method.
previous:-
in your
- (MKAnnotationView *) mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>) annotation
method