2

我创建了许多图钉,当我按下图钉时,标题必须显示,而副标题必须隐藏,因为它是一段很长的文本,并且出现在 UItextView 中。问题是我没有找到隐藏字幕的方法,所以在标题下,我有一段很长的文字,结尾是:...

- (void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view
{
    MKPointAnnotation *myAnnot = (MKPointAnnotation *)view.annotation;
    field.text = myAnnot.subtitle;
}

不幸的是,我不得不使用这种方法,因为我找不到将标签分配给 MKPointAnnotation 的方法。这就是我创建它的方式:

MKPointAnnotation *annotationPoint2 = [[MKPointAnnotation alloc] init];
annotationPoint2.coordinate = anyLocation;

annotationPoint2.title = [NSString stringWithFormat:@"%@", obj];
annotationPoint2.subtitle = [NSString stringWithFormat:@"%@", key];
4

2 回答 2

3

不要使用内置MKPointAnnotation类,而是创建一个自定义注释类,该类实现MKAnnotation但具有附加属性(未命名subtitle)来保存您不想在标注上显示的数据。

此答案包含一个简单的自定义注释类的示例。

在该示例中,@property (nonatomic, assign) float myValue;用每个注释替换您想要跟踪的数据(例如。@property (nonatomic, copy) NSString *keyValue;)。

然后你会像这样创建你的注释:

MyAnnotation *annotationPoint2 = [[MyAnnotation alloc] init];
annotationPoint2.coordinate = anyLocation;

annotationPoint2.title = [NSString stringWithFormat:@"%@", obj];
annotationPoint2.subtitle = @"";  //or set to nil
annotationPoint2.keyValue = [NSString stringWithFormat:@"%@", key];

然后该didSelectAnnotationView方法将如下所示:

- (void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view
{
    if ([view.annotation isKindOfClass:[MyAnnotation class]])
    {
        MyAnnotation *myAnnot = (MyAnnotation *)view.annotation;
        field.text = myAnnot.keyValue;
    }
    else
    {
        //handle other types of annotations (eg. MKUserLocation)...
    }
}

您可能还必须更新假设注释为 aMKPointAnnotation或使用注释的代码的其他部分subtitle(该代码应检查MyAnnotation并使用keyValue)。

于 2012-10-12T12:33:02.033 回答
0

你可以试试这个简单的方法

MKPointAnnotation *point= [[MKPointAnnotation alloc] init];
point.coordinate= userLocation.coordinate;
point.title= @"Where am I?";
point.subtitle= @"u&me here!!!";
[myMapView addAnnotation:point];
于 2015-08-31T09:57:14.447 回答