如何管理多个异步NSURLConnection的请求(How to manage multiple

2019-10-20 06:19发布

我想提出在appdelegate.m上的应用程序启动和退出3个NSURLConnection的请求,我使用的异步调用,返回的响应是数组字典,在所有的反应具有相同名称的数组,所以我不能用键检查。

于是,我就在宣布和appdelgate.h然后connectionDidFinishloading比较了连接各个放慢参数声明连接对象NSURLConnection的变量

//Appdelegate.h

NSURLConnection *conn1;
 NSURLConnection *conn2;
 NSURLConnection *conn3;

然后在//Appdelgate.m

- (void)applicationDidBecomeActive:(UIApplication *)application
{

    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"http://xyz/login"]];        

          request setValue:@"application/json;charset=utf-8" forHTTPHeaderField:@"Content-Type"];

            [request setHTTPMethod:@"GET"];

            conn1 = [[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:YES];

            [conn1 start];

}

然后

- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
    // The request is complete and data has been received
    // You can parse the stuff in your instance variable now


    NSError *e = nil;
    NSDictionary *response = [NSJSONSerialization JSONObjectWithData: m_responseData options: 0 error: &e];


    //Extracy spcific keys and add to respective arrays

    if(connection == conn1)
    {
        //call 2 nd request
    }

    if(connection == conn2)
    {
        //call 3 rd request
    }
}

我检查连接对象的信息,它总是显示我这个

<NSURLConnection: 0x14d09c20> { request: <NSMutableURLRequest: 0x14d0ac70> { URL: http://xyz/login } }

即使在调用第二个请求它仍然显示我的第一个请求。

因此,比较失败..

那么什么可以为这个更好的方法呢,还是我失去了一些东西。

Answer 1:

使用就像

  NSURLConnection *itemIdConnection,*contactNameConnection;
  NSMutableData *receivedData, *locationData;

和你的委托方法是

 #pragma NSUrlConnectionDelegate Methods

-(void)connection:(NSConnection*)conn didReceiveResponse:(NSURLResponse *)response
{

if(connection == itemIdConnection)
{
      if (receivedData == NULL)
{
    receivedData = [[NSMutableData alloc] init];
}
   [receivedData setLength:0];
}

if(connection == contactNameConnection)
{
    if (locationData == NULL)
{
    locationData = [[NSMutableData alloc] init];
}

   [locationData setLength:0];
}



}

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{

if (connection==itemIdConnection) {
[receivedData appendData:data];
}
if(connection == contactNameConnection)
{
[locationData appendData:data];
}

}

 - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
  NSLog(@"Connection failed! Error - %@ %@",
      [error localizedDescription],
      [[error userInfo] objectForKey:NSURLErrorFailingURLStringErrorKey]);
 UIAlertView *customAlert = [[UIAlertView alloc]initWithTitle:@"No NetWork" message:@"Interet Connection is Lost" delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
[customAlert show];
}

- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{


if (connection==itemIdConnection) {
//        NSError *e = nil;
    NSDictionary *jsonDict = [NSJSONSerialization JSONObjectWithData:receivedData options: kNilOptions error:nil];
    NSString *tmp=[[NSString alloc]initWithData:receivedData encoding:NSUTF8StringEncoding];
    NSLog(@"%@", tmp);
    NSLog(@"  parsing JSON: %@", jsonDict);


      }

 if (connection==contactNameConnection) {
  NSError *e = nil;
     NSDictionary *jsonDict = [NSJSONSerialization JSONObjectWithData:locationData options: NSJSONReadingMutableContainers error: &e];
     NSLog(@"  parsing JSON: %@", jsonDict);
 }



}


文章来源: How to manage multiple asynchronous NSURLConnection request