カスタム マップ コールアウトを作成しました。私の吹き出しにはUIButtons
とが含まれていUITextView
ます。をタップするUIButton
と、いい感じに押せます。しかし、タップUITextView
するとカーソルがタップ位置に移動し、ピンの選択が解除され、コールアウトが消えます...
hitTest:withEvent:
ここのように MyAnnotationView のメソッドを実装しました: https://stackoverflow.com/a/13495795/440168
しかし、ログを見ると、[super hitTest:withEvent:]
決して返されませんnil
。
これが私のMyAnnotationView
方法です:
- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event
{
BOOL isInside = [super pointInside:point withEvent:event];
if (isInside)
return YES;
for (UIView * subview in self.subviews)
{
if ([subview isKindOfClass:[NSClassFromString(@"UICalloutView") class]])
continue;
CGPoint inPoint = [self convertPoint:point toView:subview];
BOOL isInside = [subview pointInside:inPoint withEvent:nil];
if (isInside)
return YES;
}
return NO;
}
- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
{
UIView * hitView = [super hitTest:point withEvent:event];
if (hitView)
return hitView;
for (UIView * subview in self.subviews)
{
if ([subview isKindOfClass:[NSClassFromString(@"UICalloutView") class]])
continue;
CGPoint inPoint = [self convertPoint:point toView:subview];
hitView = [subview hitTest:inPoint withEvent:event];
if (hitView)
return hitView;
}
return nil;
}
更新 1:
カスタム吹き出しビューを追加するコードは次のとおりです。
- (void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view
{
for (UIView * subview in view.subviews)
subview.hidden = YES;
[view addSubview:self.myCalloutView];
self.myCalloutView.center = CGPointMake(view.bounds.size.width/2,-self.myCalloutView.bounds.size.height/2);
// ...
}
更新 2:
MKMapView サブクラスをダーティ ハックで実装しました。しかし、これはうまくいきます!
@implementation HNPMapView
- (void)handleTap:(UITapGestureRecognizer *)recognizer
{
for (UIView * v in [self findSubviewsOfClass:[MyCallout class]]) {
CGPoint point = [recognizer locationInView:v];
if (CGRectContainsPoint(v.bounds, point))
return;
}
//[super performSelector:@selector(handleTap:) withObject:recognizer];
void (*functionPointer)(id,SEL,...) = [MKMapView instanceMethodForSelector:@selector(handleTap:)];
functionPointer(self,@selector(handleTap:),recognizer);
}
@end
このカテゴリを使用して、ビュー階層で吹き出しを見つけます。
@interface UIView (FindSubview)
- (NSArray *)findSubviewsOfClass:(Class)class;
@end
@implementation UIView (FindSubview)
- (NSArray *)findSubviewsOfClass:(Class)class
{
NSMutableArray * found = [NSMutableArray array];
for (UIView * subview in self.subviews)
{
if ([subview isKindOfClass:class])
[found addObject:subview];
[found addObjectsFromArray:[subview findSubviewsOfClass:class]];
}
return found;
}
@end