我添加了GoogleService-Info.plist,用
创建了桥接标题#import <GoogleMaps/GoogleMaps.h>
和
GMSServices.provideAPIKey(Keys.google)
有效,但编译器无法找到“GMSAutocompleteFilter”,它根据Google Tutorial包含在“GoogleMaps.h”中。另外一个类定义得很好:
我使用了谷歌教程中的功能来测试:
答案 0 :(得分:2)
我找到了答案:Google文档中没有说明,但我应该添加
pod 'GooglePlaces'
到我的podfile和
#import <GooglePlaces/GooglePlaces.h>
到桥接头。