我正在尝试将我的一个应用程序更新到iOS7。问题在于,在我的MKMapView
上,当我点按某个图钉时,会显示Callout
,但是当点击rightCalloutAccessoryView
时,它不再向该代表发送任何回调。因此,我不能再推细节了。
它在iOS6上运行良好,在iOS7上不再适用。
以下是相关的代码:
- (MKAnnotationView *) mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation {
if ([annotation isKindOfClass:[MKUserLocation class]]) {
return nil;
}
NSString * annotationIdentifier = nil;
if ([annotation isKindOfClass:VPStation.class]) {
annotationIdentifier = @"stationAnnotationIdentifier";
}
if (!annotation) {
return nil;
}
MKPinAnnotationView * annotationView = [(MKPinAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:annotationIdentifier] retain];
if(annotationView == nil) {
annotationView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:annotationIdentifier];
annotationView.canShowCallout = YES;
annotationView.rightCalloutAccessoryView = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
annotationView.image = [UIImage imageNamed:@"MyAnnotationPin"];
annotationView.centerOffset = CGPointMake(-10.0f, 0.0f);
}
annotationView.annotation = annotation;
return [annotationView autorelease];
}
- (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control {
if ([view.annotation isKindOfClass:VPStation.class]) {
VPTotalDetailViewController * detailVC = [[VPTotalDetailViewController alloc] initWithStation:(VPStation *)view.annotation
andUserLocation:self.mapView.userLocation.coordinate];
[self.navigationController pushViewController:detailVC animated:YES];
[detailVC release];
}
}
根据MKAnnotationView
班级参考:
如果您指定的视图也是UIControl类的后代,则可以使用地图视图的委托在轻触控件时接收通知。如果它不是从UIControl下降,则您的视图负责处理其范围内的任何触摸事件。
有什么比放置我自己的UIView
子类来触摸和推送detailViewController更简单吗?我应该等苹果来修复这个错误吗?我相信这是一个错误,不是吗?
提前致谢
答案 0 :(得分:12)
好吧,这里的问题是我在UIGestureRecognizer
上设置了MKMapView
(对于它的价值,这是一个自定义识别器,但我不相信这会改变任何东西)这个手势识别器会消耗触摸,然后不会将其转发到calloutAccessoryControl
。请注意,iOS6和iOS7之间的此行为已更改。修复很简单,我添加了我的控制器作为识别器的代表(之前不是)并实现了UIGestureRecognizerDelegate
方法:
#pragma mark - UIGestureRecognizerDelegate
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch {
if ([touch.view isKindOfClass:[UIControl class]]) {
return NO;
}
return YES;
}