現在マップ上にある 3 つの注釈すべてに対して calloutView を表示し、ユーザーがそれらの吹き出しに書かれた情報に基づいて操作するものを決定できるようにする必要があります。
私は電話してみました:
[[SKRoutingService sharedInstance].mapView showCalloutForAnnotation:annotation1 withOffset:CGPointMake(0, 52.0f) animated:YES];
[[SKRoutingService sharedInstance].mapView showCalloutForAnnotation:annotation2 withOffset:CGPointMake(0, 52.0f) animated:YES];
[[SKRoutingService sharedInstance].mapView showCalloutForAnnotation:annotation3 withOffset:CGPointMake(0, 52.0f) animated:YES];
ただし、最後の注釈に対してのみ CalloutView を表示することになります。
これに対する解決策はありますか?