我创建了许多引脚,当我按下引脚时标题必须显示,而字幕必须隐藏,因为它是一段很长的文本,它出现在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];
答案 0 :(得分:3)
不是使用内置的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
并使用{{ 1}})。
答案 1 :(得分:0)
您可以尝试这种简单方法,
MKPointAnnotation *point= [[MKPointAnnotation alloc] init];
point.coordinate= userLocation.coordinate;
point.title= @"Where am I?";
point.subtitle= @"u&me here!!!";
[myMapView addAnnotation:point];