I'm using the below code for getting the geocode response of a particular address,
NSString *address = @"Doha,Qatar";
NSLog(@"address : %@",address);
NSString *esc_addr = [address stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding];
NSString *req = [NSString stringWithFormat: @"http://www.maps.google.com/maps/api/geocode/json?address=%@&sensor=false", esc_addr];
NSURL *url=[NSURL URLWithString:req];
NSLog(@"url : %@",url);
NSData *data=[NSData dataWithContentsOfURL:url];
NSLog(@"data : %@",data);
NSError *error=nil;
id response=[NSJSONSerialization JSONObjectWithData:data options:
NSJSONReadingMutableContainers error:&error];
NSLog(@"The JSON Object: %@ Or Error is: %@", response, error);
But the response is always null.
The response,
2014-11-27 16:35:48.961 MyProj[15279:254055] address : Doha,Qatar
2014-11-27 16:35:48.961 MyProj[15279:254055] url : http://www.maps.google.com/maps/api/geocode/json?address=Doha,Qatar&sensor=false
2014-11-27 16:35:49.005 MyProj[15279:254055] data : (null)
2014-11-27 16:35:49.008 MyProj[15279:254055] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'data parameter is nil'
But when I open the URL in brows it gives output as,
{
"results" : [
{
"address_components" : [
{
"long_name" : "Doha",
"short_name" : "Doha",
"types" : [ "locality", "political" ]
},
{
"long_name" : "Doha",
"short_name" : "Doha",
"types" : [ "administrative_area_level_1", "political" ]
},
{
"long_name" : "Qatar",
"short_name" : "QA",
"types" : [ "country", "political" ]
}
],
"formatted_address" : "Doha, Qatar",
"geometry" : {
"bounds" : {
"northeast" : {
"lat" : 25.4125783,
"lng" : 51.6281212
},
"southwest" : {
"lat" : 25.1954283,
"lng" : 51.4307964
}
},
"location" : {
"lat" : 25.286667,
"lng" : 51.533333
},
"location_type" : "APPROXIMATE",
"viewport" : {
"northeast" : {
"lat" : 25.4125783,
"lng" : 51.6281212
},
"southwest" : {
"lat" : 25.1954283,
"lng" : 51.4307964
}
}
},
"types" : [ "locality", "political" ]
}
],
"status" : "OK"
}
What will be the reason for null response,
Thanks for any suggestion.
Thanks for all the suggestions. The
dataWithContentsOfURL:
not working for me sometimes. So I used the NSURLConnection. Now it working well.Below is the changes i've done.