2

我正在尝试在连接失败时测试我的应用程序的行为。我正在关闭 wifi 的 iPad 上进行测试。当 Restkit 尝试调用 Web 服务时,我收到以下错误:

CPL[7713:6203] E restkit.network:RKRequest.m:545 Failed to send request to https://xxxxxxxx/APNS_WebService/rest/operations/initializeDevice?deviceID=c4a17f855d3cc824b174b71908480d4e505ebfb221cb4643da9270a07344c367 due to unreachable network.

问题是我想在委托回调方法中处理这种情况,但没有调用任何委托方法。我已经在请求上设置了委托,并实现了 requestDidFailLoadWithError、requestDidCancelLoad、requestDidTimeout 和 objectLoaderDidFailWithError。这些都没有被调用。

为什么不叫我的代表?

编辑:在 RKRequest.m 中设置断点后,我看到实际上正在执行以下行:

        [self performSelector:@selector(didFailLoadWithError:) withObject:error afterDelay:0];

但是,我的委托方法没有被调用。

这是我设置委托的地方:

request = [client requestWithResourcePath:[NSString stringWithFormat:@"/initializeDevice?deviceID=%@",deviceID]];
request.delegate=self;
[request sendAsynchronously];

编辑 2:实际上,我在上面发布的 RKRequest.m 中的行只是调用 RKRequest 中的另一个方法,但事实并非如此。在 didFailLoadWithError 中设置断点表明永远不会到达此代码。我不明白为什么这不起作用。

将 performSelector 更改为常规方法调用会出现在表面上,以提供我正在寻找的行为。这会破坏什么吗?我想我不确定为什么使用 performSelector 来调用同一类中的方法。

编辑 3:根据要求,这是我的委托方法:

-(void)request:(RKRequest *)request didFailLoadWithError:(NSError *)error{
    NSLog(error.domain);
    NSLog([NSString stringWithFormat:@"%d",error.code]);
    NSLog(error.localizedDescription);
    NSLog(error.localizedFailureReason);

    [request reset];
    [request send];
}
4

1 回答 1

1

编辑:

实际上,我在上面发布的 RKRequest.m 中的行只是调用了 RKRequest 中的另一个方法,但事实并非如此。在 didFailLoadWithError 中设置断点表明永远不会到达此代码。我不明白为什么这不起作用。

这真的很奇怪。我会尝试彻底清理项目并重建。

至于什么需要直接调用而不是使用performSelector,您可以看到afterDelay

[self performSelector:@selector(didFailLoadWithError:) withObject:error afterDelay:0];

这将使该didFailLoadWithError:方法在运行循环的下一次迭代中被调用。我会保持这种称呼方式。

但是,您可以尝试使用以下替代方法:

dispatch_async(dispatch_get_current_queue(), ^() { 
                       [self didFailLoadWithError:error]; } );

我建议在您正在使用的 RestKit 方法中设置一个断点(我想sendAsynchronously)并检查会发生什么。如果您查看方法定义,则会有效地调用委托:

    } else {
        self.loading = YES;

        RKLogError(@"Failed to send request to %@ due to unreachable network. Reachability observer = %@", [[self URL] absoluteString], self.reachabilityObserver);
        NSString* errorMessage = [NSString stringWithFormat:@"The client is unable to contact the resource at %@", [[self URL] absoluteString]];
        NSDictionary *userInfo = [NSDictionary dictionaryWithObjectsAndKeys:
                                  errorMessage, NSLocalizedDescriptionKey,
                                  nil];
        NSError* error = [NSError errorWithDomain:RKErrorDomain code:RKRequestBaseURLOfflineError userInfo:userInfo];
        [self performSelector:@selector(didFailLoadWithError:) withObject:error afterDelay:0];
    }
于 2013-01-14T15:29:34.750 回答