0

我在 annotationView 上制作了一个 UIButton,如下所示:

UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
CGPoint point = [mainMapView convertCoordinate:sac.coordinate toPointToView:self.smallView];
button.frame = CGRectMake(point.x - 30, point.y - 30, 60, 60);

效果很好,但是当我移动地图时,按钮不会随地图移动。有没有办法用 a 来绘制按钮CGRectMake,把它button.frame放在地图上而不是视图上?

4

1 回答 1

2

你真的应该使用 MKMapAnnotation 的东西来完成它。此链接将引导您了解设置所需代表的基础知识。基本上所有将按钮保留在某个位置的工作都已为您完成——您只需要利用它即可。 此类参考展示了如何为覆盖视图和其他各种内容设置图像。

于 2012-08-21T15:27:56.490 回答