NSURLConnection是否自动将消息发送到初始化它的类或它是如何工作的,因为我没有在我的头文件中引用它。
答案 0 :(得分:1)
不,您需要指定委托,如本例中的URL Loading System Guide
// Create the request.
NSURLRequest *theRequest=[NSURLRequest
requestWithURL:[NSURL URLWithString:@"http://www.apple.com/"]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:60.0];
// create the connection with the request
// and start loading the data
NSURLConnection *theConnection=[[NSURLConnection alloc]
initWithRequest:theRequest delegate:self];
(注意delegate:self
部分)。