所以我使用的是xcode 6.2,我开始制作应用程序。 但我有一个问题:无论何时我在故事板中拖动某些内容,如导航栏,地图就会覆盖它,它根本就不会出现,请帮忙。 这是我的代码
#import "ViewController.h"
@interface ViewController () {
GMSMapView *mapView;
}
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:43.642510 longitude:-79.387038 zoom:12 bearing:0 viewingAngle:0];
mapView = [GMSMapView mapWithFrame:CGRectZero camera:camera];
mapView.myLocationEnabled = YES;
self.view = mapView;
GMSMarker *marker = [[GMSMarker alloc] init];
marker.position = CLLocationCoordinate2DMake(43.642510, -79.387038);
marker.title = @"CN-Tower";
marker.snippet = @"A beautifull tower";
marker.map = mapView;
marker.opacity = 0.7;
}
非常感谢, JP
答案 0 :(得分:0)
当您执行self.view = mapView
时,您将视图控制器的根视图设置为地图 - 因此地图将覆盖所有内容,替换您在故事板中设计的任何内容。
您需要做的是将地图添加为根视图的子视图,例如,这里有几种方法:
Using the Google Maps SDK in views other than the main view