“UIAccelerometer”和“UIAccelerometer”有什么区别?和“CLLocationManager”?
“UIAccelerometer”和“CLLocationManager”有什么区别?两者都给出了 x、y 和 z 轴结果。
UIAccelerometer
- X -18.000
- Y -03.500
- Z -41.000
CLLocationManager
- X -0.036
- Y -0.002
- Z -1.069
此信息是否来自具有不同格式的相同传感器?还是存在“真正”的差异?
谢谢!
What is the difference between "UIAccelerometer" and "CLLocationManager"? Both give me x, y and z axis as result.
UIAccelerometer
- X -18.000
- Y -03.500
- Z -41.000
CLLocationManager
- X -0.036
- Y -0.002
- Z -1.069
Is this information from the same sensors with different formatting? Or are there "real" differences?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UIAccelerometer 告诉您重力以哪种方式以及有多强的力拉动(包括由于运动而产生的加速度,根据爱因斯坦的广义相对论,这与重力没有区别)。
CLLocationManager 告诉您您在地球表面的位置。这是 GPS API。
UIAccelerometer tells you which way — and how hard — gravity is pulling (including acceleration due to motion, which, per Einstein's general theory of relativity, is indistinguishable from gravity).
CLLocationManager tells you where you are on the surface of the earth. It's the GPS API.