Swiftで現在地を取得するのにかなり手間取ったので、メモを残しておきます。 現在地の緯度と経度を画面に表示させています。 import UIKit import CoreLocation class ViewController: UIViewController, CLLocationManagerDelegate { var lm: CLLocationManager! = nil var longitude: CLLocationDegrees! var latitude: CLLocationDegrees! @IBOutlet var lonLabel: UILabel @IBOutlet var latLabel: UILabel @IBAction func nowButton(sender: AnyObject) { //現在地取得 lm.startUpdatingLoc