我正在尝试向我的 MKAnnotation 添加自定义值。我想让它存储该位置的唯一 ID。我使用标题和副标题设置注释的代码如下所示:
location.latitude = [dictionary[@"placeLatitude"] doubleValue];
location.longitude = [dictionary[@"placeLongitude"] doubleValue];
newAnnotation = [[MapViewAnnotation alloc] initWithTitle:dictionary[@"placeName"]
andCoordinate:location];
newAnnotation.subtitle = dictionary[@"placeCity"];
如何添加自定义属性,例如“placeId”?这就是我所拥有的:
newAnnotation.placeId=dictionary[@"placeId"];
任何帮助都会很棒。谢谢!