You can download this sqlite file. This is a database of countries with relevant states. You can re-create the request each time the user selects a country.
NSString *queryString = [NSString stringWithFormat:@"select zone_id , name from
zone where country_id = %d", countryID];
source
share