带有谷歌地图的 Iphone App + UIView 不响应滑动手势
Posted
技术标签:
【中文标题】带有谷歌地图的 Iphone App + UIView 不响应滑动手势【英文标题】:Iphone App with google maps + UIView does not respond to swipe gestures 【发布时间】:2015-01-18 18:46:32 【问题描述】:我创建了一个测试项目,它有一个 UIViewController。一个 UIView (myView) 声明为 xib 它有一个图像和 3 个按钮
我以编程方式将 UIView 添加到 UIViewController 并在 UIViewController 的 viewDidLoad
方法中向 UIView 添加滑动手势
swipeRight = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeAction:)];
swipeRight.direction = UISwipeGestureRecognizerDirectionRight;
[myView addGestureRecognizer:swipeRight];
[self.view addSubview:myView];
一切正常。
然后我在viewDidLoad
中再次将谷歌地图添加到UIViewcontroller
// Create a GMSCameraPosition that tells the map to display the
// coordinate -33.86,151.20 at zoom level 6.
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_;
第一个问题: myview 没有显示 --> 我把添加 UIView 的代码移到viewDidAppear
.
现在可以看到视图按钮响应但滑动手势不起作用
有什么想法吗?
【问题讨论】:
【参考方案1】:由于以下行,您添加 myView
的视图将被您的地图视图替换:self.view = mapView_;
因此,您的视图不可见。
您应该将地图视图添加为子视图。尝试用[self.view addSubview:mapView_]
替换该行
【讨论】:
我没有使用过GMSMapView
,但我相信应该可以将其添加为子视图。您在初始化地图视图时将 CGRectZero
作为框架传递,所以也许这就是它没有显示的原因。尝试将非零矩形作为框架。如果它仍然不起作用,请尝试在添加 mapView_
后添加您的 myView
以上是关于带有谷歌地图的 Iphone App + UIView 不响应滑动手势的主要内容,如果未能解决你的问题,请参考以下文章
谷歌地图无法在 iPhone/iPad worklight 6.2 应用程序上运行