import UIKit import CoreLocation class ViewController: UIViewController, CLLocationManagerDelegate { var locationManager : CLLocationManager! override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a nib. locationManager = CLLocationManager.init() locationManager.allowsBackgroundLocationUpdates = true; // バックグランドモードで使用する場合YESにする必要がある loca