OpenWeatherMap APIにアクセスしてみたのでメモ。今のところ安定して動いているし無料サービスにしては内容も精度も必要十分かなと思います。天気予報取れるし。 AFNetworking使ったサンプルですみません。 // OpenWeatherMapの天気出力APIエンドポイント NSString *kOpenWeatherMap3HoursForecastAPI @"http://api.openweathermap.org/data/2.5/weather?units=metric&lat=%f&lon=%f"; // 適当な緯度経度 CLLocationDegrees latitude = 39.01; CLLocationDegrees longitude = 141.68; NSString *urlString = [NSString stringWithFormat: