iPhone 地图中的默认警报视图
我是 iPhone 开发新手。我正在创建一个地图应用程序。我想显示“要求加载当前位置”的警报。为此,我应该调用警报方法还是可以调用内置方法(如果可用)。如果 ipod touch 无法确定位置,它应该显示一个警报“无法确定您的位置”。为此目的还有一个默认警报,或者我应该创建一个警报。我已经添加了地图和核心位置框架。请帮助我出去。请指导我。谢谢。
I am new to iphone development.I am creating a map application.I want to display the alert "asking for load the current location".To do that should i call a alert method or can i invoke the inbuilt method(if available).And if the ipod touch cannot determine the location it should display an alert"your location cannot be determined".For this purpose also is there a default alert or i should create an alert.I have added map and core location frameworks.Please help me out.Please guide me.Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当程序尝试使用 CoreLocation 或无法确定位置时,这些警报将自动出现。
These alerts will appear automatically when the program attempts to use CoreLocation or failed to determine the location.
当他们单击“确定”时,您无需采取任何操作。您的程序将开始从核心位置接收位置消息。但是,如果单击“拒绝”,则“核心位置”将引发错误,您必须捕获该错误并了解您将无法从他们那里获取位置数据。
You don't take action when they click ok. Your program will just start receiving location messages from core location. However if the click Deny then Core Location will throw an error and you must catch that and understand that you won't be getting location data from them.