iOS 9 で Swift を使用しています。ContactAdd 以外のどのボタン タイプを選択しても、情報アイコンのみが表示されます。マップビューの吹き出しの右側にある DetailDisclosure アイコンを取得しようとしています。コードは次のとおりです。
let rightButton = UIButton(type: UIButtonType.DetailDisclosure);
rightButton.addTarget(self, action: "buttonTapped:", forControlEvents: UIControlEvents.TouchUpInside)
annotationView.rightCalloutAccessoryView = rightButton;