我在使用这些注释时遇到问题...
首先,在 iOS 6 设备上打开应用程序时,图钉将显示在标注顶部,可以通过以下方式修复:
- (void)didMoveToSuperview {
[super didMoveToSuperview];
[self.superview bringSubviewToFront:self];
}
现在,当我点击标注时,下方的引脚会触发关闭当前标注并打开新标注。
我已经尝试过覆盖:
touchesBegan:, touchesMoved: and touchesEnded
并且不在其中调用 super ,以防止调用传播到其后面的层-没有任何运气...
有什么想法吗?它在 iOS 5 上运行良好...