これは私のコードです
theDownloadConnection=[[NSURLConnection alloc] initWithRequest:theRequest delegate:self];
そして、これらのNSURLConnectionデリゲートメソッドを呼び出しています
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response;
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data;
- (void)connectionDidFinishLoading:(NSURLConnection *)connection;
しかし、それは呼び出していません
- (void)connection:(NSURLConnection *)connection didSendBodyData:(NSInteger)bytesWritten
totalBytesWritten:(NSInteger)totalBytesWritten
totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite;
これを行うと、NSURLConnectionデリゲート呼び出しのこのメソッドが呼び出されます
[NSURLConnection connectionWithRequest:request delegate:self];
なぜこれが起こっているのか分かりませんか?