Hi All,
I'm working on an app where I need to query Google for businesses near a current location. How do I go about storing them in an array? I don't want to exit the app and open Google Maps, I want to be able to display the addresses in a list format (Table View, I suppose).
Any help would be greatly appreciated.
Thanks! Thomas
Extra Info:
I send this url to Google:
NSString *url = [NSString stringWithFormat: @"http://maps.google.com/maps?q=ChevyDealers&near=%@",
[fullAddress stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
I verified that it works by launching Google Maps with the URL built here. This is not the functionality that I want in the end product though.