How to tell if a RestKit request failed due to a timeout
- (BOOL)isRestKitTimeoutError:(NSError *)error { return [error.domain isEqualToString:RKErrorDomain] && error.code == RKRequestConnectionTimeoutError; }
A place you might use this is in request:didFailLoadWithError: when adopting the RKRequestDelegate protocol.














