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"];
どんな助けでも素晴らしいでしょう。ありがとうございました!