gpt4 book ai didi

ios - 在 xcode 7.3.1 中使用未解析的标识符 'GMSPlacesClient'

转载 作者:搜寻专家 更新时间:2023-10-30 22:04:37 26 4
gpt4 key购买 nike

func searchBar(searchBar: UISearchBar,
textDidChange searchText: String){

let placesClient = GMSPlacesClient()
placesClient.autocompleteQuery(searchText, bounds: nil, filter: nil) { (results, error:NSError?) -> Void in
self.resultsArray.removeAll()
if results == nil {
return
}
for result in results!{
if let result = result as? GMSAutocompletePrediction{
self.resultsArray.append(result.attributedFullText.string)
}
}
self.searchResultController.reloadDataWithArray(self.resultsArray)
}
}

我用这种方法在谷歌地图中搜索地址。但是 Use of unresolved identifier 'GMSPlacesClient' 发现错误。我该如何解决这个问题?

最佳答案

如果使用 cocoapod,则需要添加 pod 'GooglePlaces'。并导入 GooglePlaces。

关于ios - 在 xcode 7.3.1 中使用未解析的标识符 'GMSPlacesClient',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38782621/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com