添加纬度和经度值时出现问题

发布于 2024-10-31 05:00:52 字数 405 浏览 2 评论 0原文

当我更改另一个位置的纬度和经度值时,我的应用程序自动关闭有帮助吗?

if (1)
{
    CLLocationCoordinate2D cordi;
    cordi.latitude  =  45.574779;
    cordi.longitude = -122.685366;

    MKReverseGeocoder *coder = [[MKReverseGeocoder alloc] initWithCoordinate:cordi];
    coder.delegate = self;
    [coder start];
}
else
{
    [self performSelectorInBackground:@selector(showWeather:) withObject:@"97217"];
}

when i change the latitude and longitude value of another location my app closes automatically help ?

if (1)
{
    CLLocationCoordinate2D cordi;
    cordi.latitude  =  45.574779;
    cordi.longitude = -122.685366;

    MKReverseGeocoder *coder = [[MKReverseGeocoder alloc] initWithCoordinate:cordi];
    coder.delegate = self;
    [coder start];
}
else
{
    [self performSelectorInBackground:@selector(showWeather:) withObject:@"97217"];
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

画骨成沙 2024-11-07 05:00:52

正如 Twelve47 所说,您应该完全实现 委托,因为这两种方法都不是可选的。

听起来您只实现了成功方法:

–reverseGeocoder:didFindPlacemark:

因此当您将位置更改为无法进行地理编码的某个位置时,会调用失败方法,从而导致错误。

添加此代码:

- (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFailWithError:(NSError *)error
   NSLog(@"Geocoder failed with error: %@",error);
}

As Twelve47 Said, you should fully implement the delegate, since both methods are not optional.

It sounds like you have only implemented the sucess method:

– reverseGeocoder:didFindPlacemark:

so when you change the location to somewhere than cant be geocoded, the fail methods gets called which causes a error.

Add this code:

- (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFailWithError:(NSError *)error
   NSLog(@"Geocoder failed with error: %@",error);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文