次のコードがありますが、場所が示されていません。スウィフトマップキットの注釈
import Foundation
import UIKit
import MapKit
import CoreLocation
class ViewTwo : UIViewController {
@IBOutlet var Map: MKMapView!
override func didReceiveMemoryWarning() {
super.viewDidLoad()
var location = CLLocationCoordinate2DMake(51.385493, 6.741528)
var span = MKCoordinateSpanMake(0.2, 0.2)
var region = MKCoordinateRegion(center: location , span: span)
Map.setRegion(region, animated: true)
var annotation = MKPointAnnotation()
annotation.coordinate = location
annotation.title = "hi"
annotation.coordinate = location
Map.addAnnotation(annotation)
}
ご協力ありがとうございます。
あなたdidReceiveMemoryWarning()でコードを操作しています。 YoはviewDidLoad()関数でコードを書くべきです。 – emresancaktar