在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
[]
- ››iPhone应用帮助残障儿童看图说话
- ››iPhone实用工具AppBox Pro使用教程大揭秘
- ››iphone4省电方法
- ››iphone 获取地址的详细信息
- ››iPhone 库的基本内存管理策略
- ››iPhone加密文字亲手做 私密信息有保障
- ››iphone 根据经纬度坐标取详细地址(包括国,省,市...
- ››iphone/ipad ios cocoa object-c 近期苹果UI部分小...
- ››iphone中如何进行多线程编程
- ››iPhone OS SDK的这些事[安装、下载、版本、实例、...
- ››iPhone ObjectC的NSAutoreleasePool
- ››iPhone 判断设备是在Portrait(纵向)还是(Landscap...
更多精彩
赞助商链接