WEB开发网
开发学院手机开发iPhone 开发 在iPhone中直接调用系统自带的地图程序实现导航 阅读

在iPhone中直接调用系统自带的地图程序实现导航

 2010-10-13 02:03:00 来源:本站整理   
核心提示:daddr是目标地址,形式跟saddr一样,在iPhone中直接调用系统自带的地图程序实现导航(2),如果定位不到当前位置的话,我们可以处理他的出错信息,- (void)locationManager:(CLLocationManager *)managerdidFailWithError:(NSError *)err

daddr是目标地址,形式跟saddr一样。

如果定位不到当前位置的话,我们可以处理他的出错信息。

- (void)locationManager:(CLLocationManager *)manager

didFailWithError:(NSError *)error

{

[manager stopUpdatingLocation];

UIAlertView *alert = [[UIAlertView alloc]//警告

initWithTitle:@"Error:"

message:[NSString stringWithFormat:@"locationManager error:%@",[error localizedDescription]]

delegate:self

cancelButtonTitle:@"Return"

otherButtonTitles:nil];

[alert show];

[alert release];

}

好了,原来调用iPhone系统自带的地图是如此的简单。最后提供演示项目的下载:

http://www.shouji138.com/files/iphone20101008.zip

也欢迎光临作者的小站:手机主题 http://www.shouji138.com/

欢迎与作者交流:haolinks#163.com

上一页  1 2 

Tags:iPhone 直接 调用

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接