我创建了许多图钉,当我按图钉时,标题必须显示,而字幕必须隐藏,因为这是一段很长的文本,并且出现在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];

最佳答案

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

This answer包含一个简单的自定义注释类的示例。

在该示例中,将@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)...
    }
}

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

关于ios - MKPointAnnotation字幕,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12858218/

10-10 22:37