我一直无法找到获得设备高度的方法.有人可以给我一个指针或组合一个短脚本,获取设备的高度并打印出来吗?只有在迅速.谢谢!
解决方法
导入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() }