次の方法を使用して、Google から JSON を返そうとしています。
NSString *urlString = [NSString stringWithFormat:@"http://maps.google.com.br/maps/api/directions/json?origin=%@&destination=%@&sensor=false", pointOrigem, pointDestino];
NSURL *url = [NSURL URLWithString:urlString];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[NSURLConnection connectionWithRequest:request delegate:self];
NSLog(@"%@", urlString);
ご覧のとおり、すべてが正常であることを確認するために URL をログに記録しました。ここにあります:
誰かが私のコードの何が問題なのか知っていますか? 助けてくれてありがとう!