0

我正在调用使用不同时间戳调用 URL 的方法。但是,数据处理可能需要比我定义的时间更长的时间。

  [self performSelector:@selector(process) withObject:nil afterDelay:1.6];

下面的部分显示了该方法被调用

 -(void)process
{
    timestamp=[NSString stringWithFormat:@"%1.f",progressValue];
    NSString *contour=@"&bandschema=4";
    NSString *url6=[NSString stringWithFormat:@"http://contour.php?  callback=contourData%@&type=json&timestamp=%@%@",timestamp,timestamp,contour];        
    NSURL *url1=[NSURL URLWithString:url6];
  __weak ASIHTTPRequest *request1 = [ASIHTTPRequest requestWithURL:url1];
        [request1 setCompletionBlock:^{
            responseString = [request1 responseString];
                [self plotPoint:self.responseString];

        }];
        [request1 setFailedBlock:^{

            NSError *error=[request1 error];
            NSLog(@"Error: %@", error.localizedDescription);
        }];
        [request1 startAsynchronous];
    }

这部分是分析数据的起点。

-(void)plotPoint:(NSString *)request
{
    NSArray *polygonArray = [[dict  objectForKey:@"data"]valueForKey:@"polygon"];
    NSArray *valleyPolygonArray = [[dict objectForKey:@"valley"]valueForKey:@"polygon"];
    CLLocationCoordinate2D *coords;
}

然而,有时时间间隔不足以获取新数据,尤其是当互联网连接不好时。

你能指导我吗?我该如何处理这个问题?最佳解决方案是什么?

4

1 回答 1

1

你能提供一些代码吗?基本上你需要在请求完成的委托调用中执行操作

更多信息:http: //developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSURLConnection_Class/Reference/Reference.html

http://developer.apple.com/library/mac/#documentation/Foundation/Reference/NSURLConnectionDelegate_Protocol/Reference/Reference.html#//apple_ref/occ/intf/NSURLConnectionDelegate

编辑:
我还是不太明白,但看看这是否对你有帮助:

__weak ASIHTTPRequest *request1 = [ASIHTTPRequest requestWithURL:url1];  
        [request1 setCompletionBlock:^{  
            responseString = [request1 responseString];  
                [self plotPoint:self.responseString];  

        //if (something)  
            [self process];  
        }];
于 2012-11-12T23:03:41.030 回答