0

我正在开发一个新的应用程序。我还使用了 MapKitView 并放下了一些别针。我拿了一个 id 数组,但我不能单独访问那个引脚的 id,你能帮我吗?提前致谢...

4

1 回答 1

1

为此,您必须使用 pin 设置标签属性。当注释确实调用了select方法时,从pin中检索标签并在标签的帮助下从数组中获取值并将其发送到另一个类

UIButton* rightButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];

rightButton.tag = annotationIndex;

[rightButton addTarget:self action:@selector(showDetails:) forControlEvents:UIControlEventTouchUpInside];

pinView.rightCalloutAccessoryView = rightButton;
于 2012-05-18T11:53:55.113 回答