我在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);
效果很好,但是当我移动地图时,按钮不随地图移动。有没有办法用CGRectMake
绘制按钮,将button.frame
放在地图而不是视图上?
答案 0 :(得分:2)
你真的应该使用MKMapAnnotation的东西来实现这一目标。 this link引导您完成设置所需代理的基础知识。 基本上所有将按钮保持在某个位置的工作都已经为您完成 - 您只需要利用它。 This class reference显示了如何为叠加视图和其他各种内容设置图像。