在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正则表达式的简单使用
- ››iPhone开发Unresolved Symbols CAKeyframeAnimati...
- ››IPhone开发-“此证书是由未知颁发机构签名”解决方...
- ››IPhone开发-整合私钥和证书,生成.p12文件
- ››iPhone应用开发-UIPickerView选取器详解
- ››iphone 获取屏幕的宽度和高度
- ››iPhone读取工程包中的二进制文件
- ››iPhone新手机 不挂YouTube APP
- ››iPhone 获取指定格式的时间和日期
- ››iPhone版PPS走进生活 观赏体验媲美PC版
- ››调用已注册会员人数和最新会员名称
更多精彩
赞助商链接