Google Maps SDKだけを統合した新しいシングルビュープロジェクトを開始しました。ViewController内でGoogleマップアプリのサイズを設定するにはどうすればよいですか?
現在、すべての画面に表示されています(フルサイズ)。これはデフォルト設定です。私はそれを減らして、トップバーのスペースを取らないようにしたいと思っています。また、ボタンの底にスペースを残したいと思っています。どうすればいいですか?
は、ここに私の(シングル)View Controllerクラスで実装唯一の方法だ:
- (void)loadView {
// 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];
GMSMapView *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;
}
は、各ラインのエラーを得た:メンバ参照ベース型「int型*」は、あなたがエラーを得たラインkonyv12 @構造体や共用体 – konyv12
ではないと言います? – iOS
for each .. – konyv12