Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道iOS上是否有高度计,如果没有,有没有办法以尽可能高的精度计算高度?
iPhone 和支持 3G 的 iPad 中装有 GPS 装置。他们可以使用 GPS 来确定当前高度以及其他位置和速度变量。用于访问此信息的 API 称为 CoreLocation。具体来说,您将使用 CLLocationManager 对象来发送包含“高度”属性的应用程序 CLLocation 对象。
请参阅: https ://developer.apple.com/library/ios/#documentation/CoreLocation/Reference/CLLocation_Class/CLLocation/CLLocation.html
核心位置有一个altitude属性 这里有一个基本教程;请注意,它有多个部分。
altitude
对于核心位置文档,请在此处查看 CLLocation 类参考。