iPhone アプリのマップ ビュー ページの注釈マーカーにボタンを追加しました。
UIButton* rightButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
[rightButton addTarget:self
action:@selector(go_to_detail_page:)
forControlEvents:UIControlEventTouchUpInside];
annView.rightCalloutAccessoryView = rightButton;
そして私の受信機能は
-(IBAction)go_to_detail_page:(id)sender;{
}
私の質問は次のとおりです。私は自分のページに非常に多くのマーカーを作成しています。その特定の注釈ビュー ボタンが押されたときに一意の識別子を渡したいと思います。文字列でも問題ありません。go_to_detail_page
注釈が押されたら、メソッドに文字列を渡すにはどうすればよいですか?