0
   -(void)method1
        {
          [self method2];     
          [self method3]; //After finishing execution of method2 and its delegates I want to execute method3
        }

在这里,method2 在调用时开始运行,但在执行其委托方法之前,method3 开始执行。如何避免这种情况?请有任何建议或代码

我在方法 2中调用了一个 nsurl 连接及其代表

 -(void)method2
    {
    ....
       connection= [[NSURLConnection alloc] initWithRequest:req delegate:self ];
    ....
    }


    -(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {

        }

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

        }
..
..
4

3 回答 3

5

使用块 - 它会更容易处理:

[NSURLConnection sendAsynchronousRequest:request
                                   queue:[[NSOperationQueue alloc] init]

                       completionHandler:^(NSURLResponse *response,
                                           NSData *data,
                                           NSError *error)
 {

     if ([data length] >0 && error == nil) {
         // parse your data here 

         [self method3];

         dispatch_async(dispatch_get_main_queue(), ^{

               // call method on main thread, which can be used to update UI stuffs
               [self updateUIOnMainThread];
         }); 
     }
     else if (error != nil) {
        // show an error
     }
 }];
于 2013-08-27T07:21:12.567 回答
1
-(void) connection:(NSURLConnection *) connection didReceiveData:(NSData *) 
{
    [self method3]
}
于 2013-08-27T07:13:34.097 回答
0

您正在使用异步 URL 连接。那就是方法 3 在方法 2 完成之前被触发。要解决您的问题,请使用此

- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
     [self method3];
}

它绝对应该有效。

于 2013-08-27T07:16:29.583 回答