我正在尝试创建自定义UITextField并将其添加到GoogleMaps视图(GMSMapView)之上 它工作但TextField没有响应触摸事件。我究竟做错了什么?我的代码是:
[self.mapView_ insertSubview:searchTextView atIndex:0];
[self.mapView_ bringSubviewToFront:searchTextView];
文本字段在地图视图的顶部可见,但根本没有响应。
答案 0 :(得分:0)
显然,Google地图视图有一个BlockingGestureRecognizer。 你需要删除它 - 为我工作。