您好我试图在mapview中创建自定义注释。在mapview中,我在地图上有多个pin maker,当用户点击图钉时我想显示一些文字和按钮,所以试图创建一个自定义的Annotation视图不起作用。
我的代码
#import <MapKit/MapKit.h>
#import <GoogleMaps/GoogleMaps.h>
@interface myviewcon : UIViewController<MKMapViewDelegate>
@property (strong, nonatomic) IBOutlet MKMapView *mpview;
@end
viewdidload中的我的MKPointAnnotation代码
for (NSDictionary *dic in [jsonArray1 valueForKey:@"houses"]) {
MKPointAnnotation *annotation = [[MKPointAnnotation alloc]init];
NSString *name=[dic valueForKey:@"building_name"];
CLLocationCoordinate2D placeCoord;
placeCoord.latitude=[[dic objectForKey:@"lat"] doubleValue];
placeCoord.longitude=[[dic objectForKey:@"lng"] doubleValue];
[annotation setCoordinate:placeCoord];
[annotation setTitle:name];
[mpview addAnnotation:annotation];
}
我的自定义Annotaionview代码
- (MKAnnotationView *)mapView:(MKMapView *)mV viewForAnnotation:(id <MKAnnotation>)annotation{
MKAnnotationView *anview = nil;
UIButton *btnViewVenue = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
anview.rightCalloutAccessoryView=btnViewVenue;
anview.enabled = YES;
anview.canShowCallout = YES;
anview.multipleTouchEnabled = NO;
return anview;
}
我已经使用上面的代码来制作自定义视图,当用户点击地图上的别针制作时我已经用文字和按钮查看我已经厌倦了这样但是它不起作用我已经检查了委托正在调用的断点但它不起作用请告诉我们如何解决这个问题。
先谢谢。
答案 0 :(得分:2)
要自定义注释,请使用:
-(MKAnnotationView *)mapView:(MKMapView *)mV viewForAnnotation:(id <MKAnnotation>)annotation
这里只需添加您需要的子视图
- (void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view {
UIView *test = [[UIView alloc]initWithFrame:CGRectMake(view.frame.origin.x - 12.5, view.frame.origin.y - 45, 50, 50)];
test.backgroundColor = [UIColor redColor];
[_mapView addSubview:test];
}
这里只是从superView
删除你的自定义callOutView- (void)mapView:(MKMapView *)mapView didDeselectAnnotationView:(MKAnnotationView *)view