아래 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
결과 화면
'ios' 카테고리의 다른 글
(ios) Xcode - 버튼 누르면 로그 찍히게 하기 (0) | 2016.04.15 |
---|---|
(ios) Xcode - 버튼 누르면 사이트 이동 (0) | 2016.04.15 |
(ios) Xcode - WebView 예제 1 (0) | 2016.04.15 |
(ios) Xcode - Swift에서 버튼 누르면 레이블에 글자 나오게 하기 (0) | 2016.04.15 |
(ios) Xcode - Playground에서 클래스 만드는 방법 (0) | 2016.04.15 |