我正在开发一个地图应用程序,我想在点击注释时获取注释的索引。我正在尝试使用:
-(void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view{
MKPointAnnotation *point = view.annotation;
NSLog(@"%@",point.title);
NSLog(@"%d",indexOfTheObject);
}
但它总是给我一个随机数。
我假设didSelectAnnotationView
委托像didSelectRowAtIndexPath
.
纠正我犯错的地方。
任何帮助都是不言而喻的。
谢谢。