解决方法
导入CoreLocation
import CoreLocation
创建locationManger变量
var locationManager:CLLocationManager = CLLocationManager()
初始化并开始更新位置
override func viewDidLoad() { super.viewDidLoad() self.locationManager = CLLocationManager() locationManager.requestWhenInUseAuthorization() self.locationManager.delegate = self self.locationManager.distanceFilter = kCLDistanceFilterNone self.locationManager.desiredAccuracy = kCLLocationAccuracyBest self.locationManager.startUpdatingLocation() } func locationManager(manager: CLLocationManager!,didUpdateToLocation newLocation: CLLocation!,fromLocation oldLocation: CLLocation!) { var alt = newLocation.altitude println("\(alt)") manager.stopUpdatingLocation() }