我在 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
放在地图上而不是视图上?