マップキットのコールアウトに詳細開示ボタンが表示されない理由がわかりません。これが私のコードです:
.hファイルに含めてから、次のメソッドを含めるようにしました。コールアウトは機能し、マップが読み込まれた直後に表示されます。また、Xibファイルにデリゲートを接続するようにしました。
   - (MKAnnotationView *)mapView:(MKMapView *)map viewForAnnotation:(id <MKAnnotation>)annotation
{
    MKPinAnnotationView *mapPin = nil;
    if(annotation != map.userLocation) 
    {
        static NSString *defaultPinID = @"defaultPin";
        mapPin = (MKPinAnnotationView *)[map dequeueReusableAnnotationViewWithIdentifier:defaultPinID];
        if (mapPin == nil )
        {
            mapPin = [[MKPinAnnotationView alloc] initWithAnnotation:annotation 
                                                     reuseIdentifier:defaultPinID];
            mapPin.canShowCallout = YES;
            UIButton *disclosureButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
            [disclosureButton addTarget:self action:@selector(clDetails:) forControlEvents:UIControlEventTouchUpInside];
            mapPin.rightCalloutAccessoryView = disclosureButton;
        }
        else
            mapPin.annotation = annotation;
    }
    return mapPin;
}
  - (void)mapView:(MKMapView *)mapView didAddAnnotationViews:(NSArray *)views
{
    id<MKAnnotation> myAnnotation = [self.mapView.annotations objectAtIndex:0];
    [self.mapView selectAnnotation:myAnnotation animated:YES];
}
助けてくれてありがとう。