目前,我在实现具有多个自定义UIImageViews的自定义MKAnnotationView时的项目存在问题。所以这些自定义UIImageViews上面有一个清晰的按钮,不必添加手势识别器。
正如您所看到的,实际点击MKAnnotationView子视图并执行某些操作将是有益的。
我为MKAnnotationView实现了一个协议,其中MKAnnotationView中的每个图像子视图都对作为MKMapView所有者的控制器进行回调...继承代码......
PHProfileImageView *image = [[PHProfileImageView alloc] initWithFrame:CGRectMake(newX - radius / 5.0f, newY - radius / 5.0f, width, height)];
[image setFile:[object objectForKey:kPHEventPictureKey]];
[image.layer setCornerRadius:image.frame.size.height/2];
[image.layer setBorderColor:[[UIColor whiteColor] CGColor]];
[image.layer setBorderWidth:2.0f];
[image.layer setMasksToBounds:YES];
[image.profileButton setTag:i];
[image.profileButton addTarget:self action:@selector(didTapEvent:) forControlEvents:UIControlEventTouchUpInside];
[self addSubview:image];
- (void)didTapEvent:(UIButton *)button
{
NSLog(@"%@", [self.pins objectAtIndex:button.tag]);
if (self.delegate && [self.delegate respondsToSelector:@selector(didTapEvent:)]) {
[self.delegate JSClusterAnnotationView:self didTapEvent:[self.pins objectAtIndex:button.tag]];
}
}
所以你可以看到,我已经尝试记录被点击的图像的结果,但没有任何东西:(。我实现这种方式的方式不是要走的路吗?我应该有CAShapeLayers或者什么?不是真的确定在这一点上。有人有任何想法吗?
修改
我认为我可能需要实现自定义标注视图。由于标注视图实际上会向其视图添加按钮并且可以响应触摸事件...但不完全确定,因为仅在点击注释视图后才显示标注。在这种情况下,ACTUAL注释视图是中间标签
所以我将mkannotationview的框架调整为更大的框架,显然所有的子视图实际上都不在MKAnnotationView的范围内,因此实际上并没有挖掘子视图。现在我正在考虑这个解决方案,它可能不是最好的解决方案。
如果有人有任何建议而不是将子视图添加到MKAnnotationView来创建我目前拥有的视图,那就太棒了!
答案 0 :(得分:3)
对于带有可点击按钮的Custom AnnotationView,您必须在Project中创建自定义AnnotationView SubClass。为此创建一个新文件。
并将这两个方法添加到实现文件中。
- (UIView*)hitTest:(CGPoint)point withEvent:(UIEvent*)event
{
UIView* hitView = [super hitTest:point withEvent:event];
if (hitView != nil)
{
[self.superview bringSubviewToFront:self];
}
return hitView;
}
- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent*)event
{
CGRect rect = self.bounds;
BOOL isInside = CGRectContainsPoint(rect, point);
if(!isInside)
{
for (UIView *view in self.subviews)
{
isInside = CGRectContainsPoint(view.frame, point);
if(isInside)
break;
}
}
return isInside;
}
然后再次转到ViewController.m文件并修改viewDidLoad方法。
- (void)viewDidLoad {
[super viewDidLoad];
self.mapKit.delegate = self;
//Set Default location to zoom
CLLocationCoordinate2D noLocation = CLLocationCoordinate2DMake(51.900708, -2.083160); //Create the CLLocation from user cordinates
MKCoordinateRegion viewRegion = MKCoordinateRegionMakeWithDistance(noLocation, 50000, 50000); //Set zooming level
MKCoordinateRegion adjustedRegion = [self.mapKit regionThatFits:viewRegion]; //add location to map
[self.mapKit setRegion:adjustedRegion animated:YES]; // create animation zooming
// Place Annotation Point
MKPointAnnotation *annotation1 = [[MKPointAnnotation alloc] init]; //Setting Sample location Annotation
[annotation1 setCoordinate:CLLocationCoordinate2DMake(51.900708, -2.083160)]; //Add cordinates
[self.mapKit addAnnotation:annotation1];
}
现在将该自定义视图添加到ViewController.xib。
现在创建此委托方法,如下所示。
#pragma mark : MKMapKit Delegate
-(MKAnnotationView *)mapView:(MKMapView *)mV viewForAnnotation:(id <MKAnnotation>)annotation
{
AnnotationView *pinView = nil; //create MKAnnotationView Property
static NSString *defaultPinID = @"com.invasivecode.pin"; //Get the ID to change the pin
pinView = (AnnotationView *)[self.mapKit dequeueReusableAnnotationViewWithIdentifier:defaultPinID]; //Setting custom MKAnnotationView to the ID
if ( pinView == nil )
pinView = [[AnnotationView alloc]
initWithAnnotation:annotation reuseIdentifier:defaultPinID]; // init pinView with ID
[pinView addSubview:self.customView];
addSubview:self.customView.center = CGPointMake(self.customView.bounds.size.width*0.1f, -self.customView.bounds.size.height*0.5f);
pinView.image = [UIImage imageNamed:@"Pin"]; //Set the image to pinView
return pinView;
}
几个月前我也从Stackoverflow上发布的人那里得到了这个答案。我根据需要将其修改为我的项目。希望这能完成你的工作。