2016-10-24 91 views
0

我加入GoogleService-Info.plist中,創建橋接報頭與使用未解決的標識符 「GMSAutocompleteFilter」

#import <GoogleMaps/GoogleMaps.h> 

GMSServices.provideAPIKey(Keys.google) 

作品,但是編譯器不能找到 「GMSAutocompleteFilter」,其中包括根據Google Tutorial在「GoogleMaps.h」中。另一個類定義就好了:

enter image description here

我使用的函數從谷歌教程測試:

enter image description here

回答

2

我找到了答案:這是不是在谷歌文檔說明,但我應該補充

pod 'GooglePlaces'

我podfile和

#import <GooglePlaces/GooglePlaces.h> 

到橋接報頭。

+0

我不知道你使用哪種版本的cocoapod,但我不需要橋接只是'導入GooglePlaces' –

相關問題