NSURLConnection重复请求

时间:2011-10-13 09:08:14

标签: iphone objective-c asynchronous nsurlconnection httprequest

我正在使用NSURLConnection向服务器发送请求并收到如下响应:

cmdConn = [[[NSURLConnection alloc] initWithRequest:req 
                                    delegate:self 
                                    startImmediately:YES] autorelease];

并在其代表中接收响应和数据。连接didReceiveData:(NSData *)data and connection didReceiveData:(NSURLResponse *)response

一切正常,但问题是当我多次检查服务器端(并非所有时间)时,我收到重复请求。我检查了我的代码和服务器端的所有内容,似乎问题出在NSURLConnection

如果您有任何想法,请帮我解决这个问题......

1 个答案:

答案 0 :(得分:2)

问题可能与您获得的回复以及您如何阅读它们有关。您也可以使用作为核心基础类的CFHTTPMessage。