我在我的 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
按下注释后,如何将字符串传递给方法?