現在/他の場所の NSURLConnection を使用して、API を介して天気情報を取得する場所ベースのアプリを作成しています。最初に、正常に機能するリクエストを送信しました。しかし、次回は、NSURLConnectionがデリゲートメソッドを呼び出していないときに機能しない同じ場所の情報を参照したいと思います。
これは私のコードです:
NSString *strs=[@"http://www.earthtools.org/timezone-1.1/" stringByAppendingString:[NSString stringWithFormat:@"%@/%@",place.latitude,place.longitude]];
NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:[NSURL URLWithString:strs]];
self.reqTimeZone=[NSURLConnection connectionWithRequest:request delegate:self];
[self.reqTimeZone start];