我已经查看了NSURLConnectionDelegate connection:didReceiveData not working,但似乎没有任何好的结果,所以我很好奇为什么我无法获取任何数据。
我在didReceiveResponse
and中设置了断点didReceiveData
。
它确实打印出“连接成功”,所以我知道连接已启动。
我正在使用 ARC 进行内存管理。
- (void)load {
request = [NSMutableURLRequest requestWithURL:myURL
cachePolicy:NSURLRequestReloadIgnoringLocalCacheData
timeoutInterval:60];
NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:request delegate:self];
if (conn) {
[conn start];
NSLog(@"connection succeeded, %s", [myURL description]);
responseData = [NSMutableData data];
} else {
NSLog(@"connection failed");
}
}
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
responseData = [[NSMutableData alloc] init];
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
[responseData appendData:data];
}
更新:
要了解我如何测试它,请查看SenTestCase 未调用异步单元测试。
我确实实现了 jonkroll 提到的两种方法,在他的回答中,我只是没有展示它们,但是,它们也没有被调用。
我添加[conn start]
只是因为它不起作用,我希望这可以解决它,但没有这样的运气。