iPhone:如何在应用程序“Qype”中获取位置
我今天发现了应用程序“Qype”,现在我想知道如何构建一个功能来像 quype 一样定位自己。
对于那些不知道这个应用程序的人:这是一个向您显示您附近的咖啡馆、酒吧、餐馆等的应用程序。当我启动 Qype 时,出现一个问题:“Qype 想定位您的位置。您愿意允许吗?”
Apple 是否有任何参考资料或任何教程来学习如何执行此操作?
谢谢你!
I've discovered today the app "Qype" and now I'd like to know how I can build a function to locate myself like in quype.
For those who dont know this app: It's an app that shows you Cafés, Bars, Restaurants etc. near you. When I'm starting Qype there's a question: "Qype want to locate your position. Do you want to allow it?"
Are there any References from Apple or any tutorials to learn how to do this?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您想要的是 Apple 的 CoreLocation 示例。这是
http://developer.apple.com/iphone/library /samplecode/LocateMe/index.html
What you want is the CoreLocation sample from Apple. Here it is
http://developer.apple.com/iphone/library/samplecode/LocateMe/index.html
要获取和使用您的位置,您应该使用
应用程序中的 CoreLocation
框架。“Appname想要定位您的位置。您要允许吗?”只是当应用程序首次尝试使用 CoreLocation 服务时 iPhone 系统自动显示的标准消息。
To get and use your location you should use
CoreLocation
framework in your application."Appname want to locate your position. Do you want to allow it?" is just a standard message iphone system automatically shows when application attempts to use CoreLocation services for the first time.