Chcę zrobić NSURLConnection
w trybie tła, ponieważ ma on wiele danych. Fora mówią, aby użyć kodowania skończonej długości Apple do użycia w didEnterBackground
. , ale chcę tego uniknąć. W tym przypadku używam następującego kodu przez NSOperation
z NSInvocation
jako, ale to nie działa. connectToServer
ma NSURLConnection
operation.any pomóc proszę? didReceiveData
, didReceiveResponse
metody delegatów nie są wywoływane?Asynchroniczny NSURLConnection z NSOperation
NSOperationQueue *queue = [NSOperationQueue new];
NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithTarget:self
selector:@selector(connectToServer)
object:nil];
[queue addOperation:operation];
[operation release];
[queue autorelease];
-(void)connectToServer
{
NSURL *url = [NSURL URLWithString:@"http://www.google.com"];
NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url];
NSURLConnection *theConnection = [[[NSURLConnection alloc] initWithRequest:theRequest delegate:self] autorelease];
if(theConnection)
{
webData = [[NSMutableData data] retain];
}
else
{
NSLog(@"theConnection is NULL");
}
}
Twoje pytanie nie jest jasne –
Proszę zobaczyć moje zmodyfikowane pytanie? – nameless