如何在没有GPRS的情况下找到当前位置?
我想为 iPhone 开发一个应用程序。我需要找到当前位置(不完全是)。 我没用过GPRS。无论如何都要找到那个吗?
I want to develop an app for iPhone. In that i need to find the current location(not exactly).
I have not used GPRS. Is it anyway to find that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 iOS 上,您只能从 CLLocationManager 获取位置数据。它可能(也可能不)使用 GPS;这取决于设备、您希望数据的精确程度等。
之所以如此,是因为 Apple 为用户提供了一个选项,供用户选择是否希望应用程序访问其位置数据。如果你正在寻找一种方法来解决这个问题,那是不可能的。
You'll only get location data on iOS from CLLocationManager. It may (or may not) use GPS; that's dependent on the device, how exact you want the data to be, etc.
The reason why that is so is because Apple gives users an option to choose if they want their location data accessed by an app. If you're looking for a way to get around that, it's not possible.