iPhone - 将 NSError 处理到范围内

发布于 2024-11-25 00:37:41 字数 227 浏览 0 评论 0原文

我正在尝试处理错误,但我发现很难知道什么类型的错误会返回给我。 例如,我从地图视图操作中调用了这个委托方法:

- (void) reverseGeocoder:(MKReverseGeocoder *)geocoder didFailWithError:(NSError *)error;

我如何知道通过此方法可以向我发送什么样的错误? 我不想处理整个错误目录...:-)

I'm trying to handle errors, and I find it very hard to know what kind of errors can be returned to me.
For example, I have this delegate method called from a map view manipulation :

- (void) reverseGeocoder:(MKReverseGeocoder *)geocoder didFailWithError:(NSError *)error;

How may I know what kind of errors can be sent to me through this method ?
I don't want to have to handle the whole error catalog... :-)

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

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

发布评论

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

评论(1

红墙和绿瓦 2024-12-02 00:37:41

MKReverseGeocoder.h 说:

// There are at least two types of errors:
//   - Errors sent up from the underlying connection (temporary condition)
//   - Result not found errors (permanent condition).  The result not found errors
//     will have the domain MKErrorDomain and the code MKErrorPlacemarkNotFound
- (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFailWithError:(NSError *)error;

我猜你应该在询问之前阅读文档和标题。

MKReverseGeocoder.h says:

// There are at least two types of errors:
//   - Errors sent up from the underlying connection (temporary condition)
//   - Result not found errors (permanent condition).  The result not found errors
//     will have the domain MKErrorDomain and the code MKErrorPlacemarkNotFound
- (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFailWithError:(NSError *)error;

Guess you should read docs and headers before asking.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文