我正在尝试将google places API用于我的iPhone项目。现在,我让它在大约一个小时前工作,但我似乎无法弄清楚我做了什么让它停止工作。任何帮助将不胜感激。
这是我到目前为止所做的:
- (NSString *)searchString {
// this mutable string allows me to dynamically create the search string
// we start with the static part of the api search URL
NSMutableString *result = [NSMutableString stringWithString:@"https://maps.googleapis.com/maps/api/place/search/json?location="];
// since I need to get the user's location, I need to create a location manager
CLLocationManager *locationManager = [[CLLocationManager alloc] init];
// we need to now update the current location,
// otherwise there will be no coordinates
[locationManager startUpdatingLocation];
// now that it's updated, we stop it because I
// am not tracking anything
[locationManager stopUpdatingLocation];
// this appends the lattitude/longitude, as double values, into the URL
[result appendFormat:@"%g,%g", [[locationManager location] coordinate].latitude, [[locationManager location] coordinate].longitude];
// release the location manager for memory management
[locationManager release];
// if a filter is present, add the keyword item to try to filter
// the results
if([[self filterString] length] > 0) {
[result appendFormat:@"&keyword=%@", filterString];
}
// add the rest of the validated URL now
//[result appendString:@"&types=food|meal_delivery|meal_takeaway|restaurant&rankby=distance&sensor=true&key=AIzaSyBmO_f6h4_Q0xArw6tdxUF7TH7rZpaiFfQ"];
[result appendString:@"&types=food&rankby=distance&sensor=true&key=mykey"];
// log the result for testing
NSLog(@"Completed Search String: %@", result);
return result;
}
现在,当我查看我的日志时,将“完成的搜索字符串”复制到Safari中,它会显示我需要的结果。
但如果我使用以下代码,应用程序会挂起:
- (void)performSearch {
NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:[self searchString]]]; // hangs on this line!
NSDictionary *jsonDictionary = [data objectFromJSONData];
NSArray *resultsArray = [jsonDictionary objectForKey:@"results"];
currentList = [ARGooglePlace placesWithArray:resultsArray];
[self.tableView reloadData];
}
我想我应该提一下,我正在使用JSONKit来进行JSON解析。此外,ARGooglePlace是一个现在不相关的自定义类(它甚至没有到达那里......)
感谢您提供的任何帮助。
答案 0 :(得分:0)
将位置管理器和lat / long拉出searchString方法......只需将其放入performSearch方法即可。而是将从位置管理器收到的lat / long传递给searchString。
这听起来像是您的位置经理的时间问题。它本来可以提前使用b / c位置管理器之前已经缓存了位置数据......并且能够获取正确的坐标。
2+可能的情况:
1)位置管理员没有更新它的坐标而只是挂在那里的问题 2)谷歌网站是罪魁祸首(可能加载太多数据?)
从searchString方法中提取位置管理器将有助于隔离原因......并且可以直接将lat / long值传递给测试谷歌网站。