본문 바로가기

ios

(ios) Xcode - 구글맵 나오게 하기

336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.


아래  Map Kit View 를 사용한다.



레이아웃은 간단하게 위에 네비게이션 바 하나 만들고 아래 부분은 맵 킷 뷰로 채웠습니다.




연결 상태는 아래와 같습니다. main과 View controller 연결.


저 옆에 Viewcontroller.h 파일에서 맵뷰로 드래그 해서 연결해주면 됩니다.





파일 2개


//

//  ViewController.h

//  GoogleMap_160412

//

//  Created by Mac on 2016. 4. 12..

//  Copyright © 2016 tester. All rights reserved.

//


#import <UIKit/UIKit.h>

#import <MapKit/MapKit.h> // GoogleMap_160412 누르고 Framework - Mapkit


@interface ViewController : UIViewController

{

    IBOutlet MKMapView *main;

}



@end


//==================================================

//

//  ViewController.m

//  GoogleMap_160412

//

//  Created by Mac on 2016. 4. 12..

//  Copyright © 2016 tester. All rights reserved.

//


#import "ViewController.h"


@interface ViewController ()


@end


@implementation ViewController


- (void)viewDidLoad {

    [super viewDidLoad];

    // Do any additional setup after loading the view, typically from a nib.

}


- (void)didReceiveMemoryWarning {

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}


@end





결과 화면