Skip to content

Instantly share code, notes, and snippets.

@IvanChan
IvanChan / gist:184b89d05769315b04f2
Created February 18, 2016 08:43
Simple Weather API (Baidu + ChinaWeather)
- (void)_requestWeatherInfo
{
BOOL ret = NO;
do
{
NSString *cityName = ...; // Get target City Name
if ([cityName length] <= 0)
{
break;
}