无法从放置在GMSMapView顶部的UIButton接收触摸事件

时间:2015-01-02 23:41:39

标签: ios swift uibutton ontouchevent google-maps-sdk-ios

我正在尝试在谷歌地图上放置一些静态UI,例如按钮。

目前我有屏幕

的UIView
- GMSMapView
- UIView
- UIButton

我更改了第二个UIView的layer.zPosition,以便显示视图和按钮,但我无法从UIButton接收任何触摸事件(touchupinside)。

1 个答案:

答案 0 :(得分:2)

根据您的设置,您不应该更改UIView.zPosition。当您添加第二个UIView时,我会再次查看代码中的要点,因为如果GMSMapViewUIView将位于同一个子视图中,则调用每个视图的顺序将很重要水平。

意思是,UIView可能会被GMSMapView的某个层阻挡。 (请注意,GMSMapView由多个图层组成,GMSUISettings图层拦截按钮的触摸事件很可能)< / p>

我使用Google的示例代码(see here)以及UIView和UIButton的代码制作了一个非常简单的测试应用程序:

- (void)viewDidLoad {
     [super viewDidLoad];

     // Exact google code
     GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:-33.86
                                                        longitude:151.20
                                                             zoom:6];
     mapView_ = [GMSMapView mapWithFrame:CGRectZero camera:camera];
     mapView_.myLocationEnabled = YES;
     self.view = mapView_;

     // Creates a marker in the center of the map.
     GMSMarker *marker = [[GMSMarker alloc] init];
     marker.position = CLLocationCoordinate2DMake(-33.86, 151.20);
     marker.title = @"Sydney";
     marker.snippet = @"Australia";
     marker.map = mapView_;

    // UIView code
    UIView * buttonView = [[UIView alloc] initWithFrame:CGRectMake(25, 25, 150, 100)];
    [buttonView setBackgroundColor:[UIColor redColor]];
    [mapView_ addSubview:buttonView];

    // UIButton code
    UIButton * tapMe = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    [tapMe setFrame:CGRectMake(10, 10, 100, 50)];
    [tapMe setTitle:@"Tap me" forState:UIControlStateNormal];
    [tapMe setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
    [tapMe setBackgroundColor: [UIColor blueColor]];
    [tapMe addTarget:self action:@selector(tapButton:)      
                forControlEvents:UIControlEventTouchUpInside];
    [buttonView addSubview:tapMe];
}

其他可能的修复 在实例化GMSMapView

后,您可以尝试添加以下代码
    GMSUISettings * settings = mapView_.settings;
    [settings setConsumesGesturesInView:NO];

如果有一个图层拦截了触摸,setConsumesGesturesInView:应该与cancelsTouchesInView具有相同的效果,因为您的按钮仍然会在GMSUISettings图层后面接收触摸事件。


我的样本是什么样的: