0
프로그래밍 방식으로 맵을 만들려고합니다. 그러나 앱을 실행하면 모두 흑백 화면이됩니다.Xcode에서 프로그래밍 할 수없는 맵을 만들 수 없습니다. (Big Nerd Ranch IOS 프로그래밍 : 6 장 p97)
다시 6 장에서 큰 얼간이 목장 아이폰 OS 프로그래밍 5 판에 97 페이지, '만들기보기 프로그래밍'은
내가 MapViewController.swift// MapViewController.swift
import UIKit
import MapKit
// Define a UIViewController subclass named MapViewController
class MapViewController: UIViewController {
var mapView: MKMapView!
override func loadView() {
// create a map view
mapView = MKMapView()
// set it as *the* view of this view controller
view = mapView
}
override func viewDidLoad() {
// Always call the super implementation of viewDidLoad
super.viewDidLoad()
print("MapViewController loaded its view.")
}
}
에서 다음 코드를 실행 입력 한 후에는 app 나는지도가 있어야하는 까만 스크린을 얻는다. 무슨 일있어?
감사합니다.