NSURLProtocol をオーバーライドし、特定の statusCode で HTTP 応答を返す必要があります。NSHTTPURLResponse には statusCode セッターがないため、次のようにオーバーライドしようとしました。
@interface MyHTTPURLResponse : NSHTTPURLResponse {}
@implementation MyHTTPURLResponse
- (NSInteger)statusCode {
return 200; //stub code
}
@end
NSURLProtocol のオーバーライドされた startLoading メソッドは次のようになります。
-(void)startLoading
{
NSString *url = [[[self request] URL] absoluteString];
if([url isEqualToString:SPECIFIC_URL]){
MyURLResponse *response = [[MyURLResponse alloc] initWithURL:[NSURL URLWithString:@"http://fakeUrl"]
MIMEType:@"text/plain"
expectedContentLength:0 textEncodingName:nil];
[[self client] URLProtocol:self
didReceiveResponse:response
cacheStoragePolicy:NSURLCacheStorageNotAllowed];
[[self client] URLProtocol:self didLoadData:[@"Fake response string"
dataUsingEncoding:NSASCIIStringEncoding]];
[[self client] URLProtocolDidFinishLoading:self];
[response release];
}
else{
[NSURLConnection connectionWithRequest:[self request] delegate:self];
}
}
しかし、このアプローチは機能しません。NSURLProtocol で作成された応答は、Web ページ上で常に statusCode = 0 になります。同時に、NSURLConnection によってネットワークから返される応答には、通常の予想される statusCodes があります。
作成された NSURLResponse に対して statusCode を明示的に設定する方法について、誰でもアイデアを手伝ってもらえますか? ありがとう。