1

この種の質問が何度も寄せられていることは承知していますが、それらはすべて、接続は別のスレッドにある必要があると指摘しています。

-(void)distanceMatrix{

  NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:distanceMatrixURL]
                                                       cachePolicy:NSURLRequestUseProtocolCachePolicy
                                                   timeoutInterval:10];

connection2 = [[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:NO];

[connection2 scheduleInRunLoop:[NSRunLoop mainRunLoop]
                      forMode:NSDefaultRunLoopMode];

NSLog(@"Is%@ main thread", ([NSThread isMainThread] ? @"" : @" NOT"));
[connection2 start];

if (connection2)
{
    responseData2 = [NSMutableData data];
    connectionIsActive = YES;    
} else {
    NSLog(@"connection failed");
}
}

- (void)connection2:(NSURLConnection *)connection2 didReceiveResponse:(NSURLResponse *)response
{NSLog(@"recieved response");
[responseData2 setLength:0];

}

- (void)connection2:(NSURLConnection *)connection2 didReceiveData:(NSData *)data
{
[responseData2 appendData:data];

}

- (void)connection2:(NSURLConnection *)connection2 didFailWithError:(NSError *)error
{
connectionIsActive = NO;
    NSLog(@"failed!!");
}

- (void)connection2DidFinishLoading:(NSURLConnection *)conn
{  

connectionIsActive          = NO;
SBJsonParser *json          = [[SBJsonParser alloc] init];
NSString *responseString    = [[NSString alloc] initWithData:responseData2 encoding:NSUTF8StringEncoding];
NSError *jsonError          = nil;

NSDictionary *parsedJSON    = [json objectWithString:responseString error:&jsonError];

travelTime= [[[[parsedJSON valueForKey:@"rows"] valueForKey:@"elements"] valueForKey:@"duration"] valueForKey:@"text"];

NSLog(@"traveltime = %@", travelTime);
}

ログに記録すると、メインスレッドで実行されていると表示されます。Connection2 はアクティブですが、どのデリゲートも呼び出されていません。

また、これは私がdistanceMatrixメソッドを呼び出す方法です

-(id)initWithJsonResultDict:(NSDictionary *)jsonResultDict andUserCoordinates:    (CLLocationCoordinate2D)userCoords andTimeURL:(NSString*)timeURL
{
self.distanceMatrixURL = timeURL;
[self distanceMatrix];
//more code here for other purposes
}
4

1 に答える 1

6

2すべてのデリゲート メソッドの名前にa を追加したためです。これによりメソッドのシグネチャが変更されるため、正しいメソッドを実装していません。2メソッドの開始時にすべてを削除する- (void)connection2:と、機能するはずです。

于 2013-06-12T06:43:00.170 に答える