iPhone - 将 NSError 处理到范围内
我正在尝试处理错误,但我发现很难知道什么类型的错误会返回给我。 例如,我从地图视图操作中调用了这个委托方法:
- (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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MKReverseGeocoder.h 说:
我猜你应该在询问之前阅读文档和标题。
MKReverseGeocoder.h says:
Guess you should read docs and headers before asking.