Я должен использовать Asynchrnous NSURLConnection внутри NSOPeration в фоновом режиме, потому что его ответ имеет большие данные. Я должен избегать кодирования Apple с конечной длиной, чтобы использовать его в didEnterBackground. Вместо этого я использую следующий код через NSOperation with NSInvocation, ноне работает.connectToServer имеет операцию NSURLConnection. Может ли помочь какая-нибудь помощь? didReceiveData, не были вызваны методы делегатаReRereResponse?
-(void)viewDidLoad
{
NSOperationQueue *queue = [NSOperationQueue new];
NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithTarget:self
selector:@selector(connectServer)
object:nil];
[queue addOperation:operation];
[operation release];
[queue autorelease];
}
-(void)connectServer
{
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");
}
}
}