抱歉,我已经阅读了很多关于如何为 MapKit 注释创建自定义标注的教程。它适用于 NSLog,但我无法在标注中显示信息。
我在地图上有两种类型的图标。这是我的 viewForAnnotation 方法:
-(MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation {
if (! [annotation isKindOfClass:[IGAMapAnnotation class]]) {
return nil;
}
IGAMapAnnotation *myLocation = (IGAMapAnnotation *) annotation;
self.typeIsFix = [myLocation.navaidType isEqualToString:@"FIX"];
self.typeIsPort = [myLocation.navaidType isEqualToString:@"PORT"];
int planeImageViewTag = 42;
NSString *reuseId;
if (self.typeIsPort)
reuseId = @"IGAMapAnnotationPort";
else if (self.typeIsFix)
reuseId = @"IGAMapAnnotationFix";
else
reuseId = @"IGAMapAnnotationOther";
MKAnnotationView *annotationView = [mapView dequeueReusableAnnotationViewWithIdentifier:reuseId];
if (annotationView == nil)
{
annotationView = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:reuseId];
annotationView.enabled = YES;
UIButton *annotationInfo = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
annotationView.rightCalloutAccessoryView = annotationInfo;
annotationView.canShowCallout = YES;
if (self.typeIsPort)
{
annotationView.image = [UIImage imageNamed:@"mapPORT.png"];
annotationView.centerOffset = CGPointMake(0, 0);
}
else if (self.typeIsFix)
{
annotationView.image = [UIImage imageNamed:@"mapFIX.png"];
annotationView.centerOffset = CGPointMake(0, 0);
}
else
return nil;
}
else
{
annotationView.annotation = annotation;
}
return annotationView;
}
然后我有一个 calloutAccessoryControlTapped 方法
- (void)mapView:(MKMapView *)mapview annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control
{
IGAAnnotationInfoViewController *popOverCallout = [[IGAAnnotationInfoViewController alloc]init];
UIPopoverController *popOver = [[UIPopoverController alloc] initWithContentViewController:popOverCallout];
popOver.popoverContentSize = CGSizeMake(300, 200);
[popOver presentPopoverFromRect:view.bounds
inView:view
permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
}
我还创建了一个分配给 UIPopoverController 的 UIViewController。
现在,当我点击注释上的按钮时,我会看到一个空白的文本空间。伟大的。如果我将文本分配给 UIViewController 中的标签,它也很有效(以下是我的 UIViewController.m):
- (void)viewDidLoad {
[super viewDidLoad];
txtCallout = [[UILabel alloc] initWithFrame:CGRectMake(0.0, 0.0, 300, 200) ];
txtCallout.font = [UIFont fontWithName:@"Arial Rounded MT Bold" size:(14.0)];
txtCallout.numberOfLines = 0;
txtCallout.clipsToBounds = YES;
txtCallout.backgroundColor = [UIColor clearColor];
txtCallout.textColor = [UIColor blackColor];
txtCallout.textAlignment = NSTextAlignmentLeft;
txtCallout.text = @"text\ntext\ntext";
[self.view addSubview:txtCallout];
}
但是如何从我的注释方法中插入文本呢?此外,文本必须根据图标类型而有所不同,例如 @"PORT, PORT" 或 @"FIX,FIX"。我该怎么做?
编辑:
我已经设法显示带有传递必要信息的标注。我的最后一个问题是,有时我的标注是 3 行,有时 - 多达 15 行。如何使标注自动调整到我的字符串中的行数?我应该在 UIViewController 中修改 popoverContentSize 还是标签大小?
太感谢了!