1
NSURLConnection會自動將消息發送給初始化它的類,或者它如何工作,因爲我沒有在頭文件中引用它。NSURLConnection是否自動選擇它的委託?
NSURLConnection會自動將消息發送給初始化它的類,或者它如何工作,因爲我沒有在頭文件中引用它。NSURLConnection是否自動選擇它的委託?
不,你需要從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
部分)指定的代表,如本例。
一個警告:NSURLConnection保留其代表。這在過去造成了一些相當大的麻煩...... – robinjam 2010-07-13 14:38:55
謝謝,我會記下這一點! – TheLearner 2010-07-13 14:49:15