JSON フィードからデータを取得しようとしています。正しい座標を持つように、フィード URL をプログラムで編集する必要があります。しかし、私はエラーを受け取り続けます:
メソッド呼び出しの引数が多すぎます。1 が必要ですが、3 が必要です
これが私のコードです:
NSString *lat = [[NSString alloc] initWithFormat:@"%g", newLocation.coordinate.latitude];
latitude.text = lat;
NSString *lng = [[NSString alloc] initWithFormat:@"%g", newLocation.coordinate.longitude];
longitude.text = lng;
NSString *acc = [[NSString alloc] initWithFormat:@"%g", newLocation.horizontalAccuracy];
accuracy.text = acc;
//
NSURLRequest *theRequest = [NSURLRequest requestWithURL: [NSURL URLWithString:@"http://api.wunderground.com/api/595007cb79ada1b1/geolookup/q/%@,%@.json", lat, lng]];
ありがとう、ダン