我是iphone开发的新手。我想知道是否有任何方法可以检查iphone是否指向特定位置的人。我想知道CLLocation有框架来获取设备的标题但我也想检查它是否也向正确的方向倾斜。目的地位置是通过经度和纬度获得的。任何人都可以建议我使用它的方法吗?
提前致谢
答案 0 :(得分:0)
CLLocationManager会给你标题,在这里查看文档 - > https://developer.apple.com/library/mac/ipad/#documentation/CoreLocation/Reference/CLLocationManager_Class/CLLocationManager/CLLocationManager.html
另外,请查看这个答案,他们谈论CLLocationDirection和trueHeading - > https://stackoverflow.com/a/2043694/1104563
---更新
没有内置方法可以执行此操作,您需要使用公式来确定这一点。公式可以在calculate bearing in relation to two points
找到此外,你可以查看这个SO答案: CLLocation Category for Calculating Bearing w/ Haversine function
希望这会有所帮助。祝你好运!