3
我想實現(自動完成)的谷歌,而在文本字段上鍵入如何使用API鍵實現它的建議地點?如何實施Google Places API適用於iOS?
對於我已經下載了谷歌地圖的SDK爲iOS 1.9.1,並把API密鑰AppDelegate.m但我ANABLE得到的代碼如下 -
https://developers.google.com/places/ios-api/autocomplete
我想實現(自動完成)的谷歌,而在文本字段上鍵入如何使用API鍵實現它的建議地點?如何實施Google Places API適用於iOS?
對於我已經下載了谷歌地圖的SDK爲iOS 1.9.1,並把API密鑰AppDelegate.m但我ANABLE得到的代碼如下 -
https://developers.google.com/places/ios-api/autocomplete
內,您的- (無效)textFieldDidBeginEditing:(*的UITextField)文本框的的UITextField委託方法方法,寫出下面的代碼: -
GMSPlacesClient *placesClient= [[GMSPlacesClient alloc] init];
[placesClient autocompleteQuery:textField.text bounds:nil
filter:kGMSPlacesAutocompleteTypeFilterNoFilter
callback:^(NSArray *results, NSError *error) {
if (error != nil) {
NSLog(@"Autocomplete error %@", [error localizedDescription]);
return;
}
for (GMSAutocompletePrediction* result in results) {
NSLog(@"Result '%@' with placeID %@", result.attributedFullText.string, result.placeID);
}
}];
我收到錯誤前兩行 –
有你進口GoogleMa ps頭文件? –