使用未解析的标识符“GMSAutocompleteFilter”

时间:2016-10-24 12:55:40

标签: swift google-maps swift3

我添加了GoogleService-Info.plist,用

创建了桥接标题
#import <GoogleMaps/GoogleMaps.h>

GMSServices.provideAPIKey(Keys.google) 

有效,但编译器无法找到“GMSAutocompleteFilter”,它根据Google Tutorial包含在“GoogleMaps.h”中。另外一个类定义得很好:

enter image description here

我使用了谷歌教程中的功能来测试:

enter image description here

1 个答案:

答案 0 :(得分:2)

我找到了答案:Google文档中没有说明,但我应该添加

pod 'GooglePlaces'

到我的podfile和

#import <GooglePlaces/GooglePlaces.h>

到桥接头。