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… 🙂
MKReverseGeocoder.h says:
Guess you should read docs and headers before asking.