我正在编写一个基于谷歌地图的应用程序,我添加了一个uiview来显示地图视图。当屏幕垂直时,它就可以了。但是当我旋转时,地图视图无法完全显示。
自动布局有什么问题?
这是我的viewDidLoad
- (void)viewDidLoad {
[super viewDidLoad];
[self authenticateAndRequestLocation];
map = [GMSMapView mapWithFrame:self.view.bounds camera:camera];
[self.mapView addSubview:map];