我的应用程序中有一个mapview,需要为每个 map 注释自定义calloutView。
因此,我有一个针对该自定义calloutView的XIB文件。
这是我的 map 视图控制器代码
- (void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view {
CustomCalloutView *calloutView = (CustomCalloutView *)[[[NSBundle mainBundle] loadNibNamed:@"CustomCalloutView" owner:self options:nil] objectAtIndex:0];
[calloutView.layer setCornerRadius:10];
CGRect calloutViewFrame = calloutView.frame;
calloutViewFrame.origin = CGPointMake(-calloutViewFrame.size.width/2 + 15, -calloutViewFrame.size.height);
calloutView.frame = calloutViewFrame;
// some other code such as load images for calloutView
UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleSingleTap)];
singleTap.numberOfTapsRequired = 1;
[calloutView addGestureRecognizer:singleTap];
[view addSubview:calloutView];
}
- (void)handleSingleTap{
NSLog(@"it works");
}
但是,从未调用过handleSingleTap:。取而代之的是,每次轻按calloutView只会简单地取消calloutView。我还尝试在calloutView上添加一个按钮,但是点击它也会导致calloutView关闭,而不是调用按钮动作。
有人可以帮忙吗?
更新:
我试图更改代码
[view addSubview:calloutView];
至
[self.view addSubview:calloutView];
它将自定义的calloutView添加到主容器视图中,而不是mapView中。
然后,使用轻按手势即可正常工作。因此,我认为问题应该是由mapView引起的,似乎mapView将calloutView上的所有touch事件传递给了它自己。有人对此有想法吗?
最佳答案
好。我终于找到了解决方案。我们需要为MKAnnotationView提供一个自定义的类来解决此问题。这是.m文件中的代码
- (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;
}
希望这对其他人有帮助。
关于ios - 无法将点击手势添加到自定义标注 View ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24185424/