【发布时间】:2016-06-24 06:07:34
【问题描述】:
操作无法完成。 Places API 库中发生内部错误。如果您认为此错误代表错误,请使用我们社区和支持页面 (https://developers.google.com/places/support) 上的说明提交报告。
我收到此错误。我能够工作几个小时。代码没有任何变化。一段时间后,每个请求我都会收到上述错误
我在 iOS 中使用的一些代码
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
NSString *text = [textField text];
text = [text stringByReplacingCharactersInRange:range withString:string];
if (text.length>0) {
footerView.hidden = NO;
[footerView startAnimating];
}else {
[self removeDropDown];
return YES;
}
[_fetcher sourceTextHasChanged:text];
return YES;
}
委托方法
- (void)didAutocompleteWithPredictions:(NSArray *)predictions {
resultsArray = [[NSMutableArray alloc]init];
NSMutableArray *titlesArray = [[NSMutableArray alloc]init];
for (GMSAutocompletePrediction *prediction in predictions) {
[titlesArray addObject:[prediction.attributedPrimaryText string]];
[resultsArray addObject:prediction];
}
if (self.searchTextField.text.length>0) {
if (dropDown == nil) {
dropDown = [[PTDropDownView alloc] showDropDown:self.searchParentView withheight:autoCompleteViewMaxHeight withItems:titlesArray animationDirection:DirectionDown];
dropDown.delegate = self;
} else {
dropDown.itemsArray = titlesArray;
[dropDown.tableView reloadData];
}
dropDown.backgroundColor = [UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.4];
[self adjustDropDownFrame];
[footerView stopAnimating];
}
NSLog(@"fetched count = %d",resultsArray.count);
}
- (void)didFailAutocompleteWithError:(NSError *)error {
NSLog(@"%@",[NSString stringWithFormat:@"%@", error.localizedDescription]);
[self removeDropDown];
}
【问题讨论】:
-
也许有新的更新可用。尝试使用最新的 pod 版本
标签: ios google-places-api ios9.3