我正在尝试处理错误,我发现很难知道哪些错误可以返回给我。 例如,我从地图视图操作中调用了这个委托方法:
- (void) reverseGeocoder:(MKReverseGeocoder *)geocoder didFailWithError:(NSError *)error;
我怎么知道通过这种方法可以向我发送什么样的错误? 我不想处理整个错误目录...: - )
答案 0 :(得分:0)
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;
猜猜你应该在询问之前阅读文档和标题。