gpt4 book ai didi

ios - 谷歌自动完成 Swift UITextField

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:05:18 25 4
gpt4 key购买 nike

有没有人找到关于如何在 UITextField 上添加 GoogleAutoComplete 的任何资源。我只看过有关如何将搜索栏添加到导航 Controller 的教程,或者已经过时且充满错误。我想将它添加到 UITextField。尚未在 GitHub 上找到适用于 Swift 4 的任何有效解决方案。

最佳答案

导入 GooglePlaces 到您的文件中,然后将 UITextField 文本传递到此方法中:-

let placeClient = GMSPlacesClient.init()
let filter = GMSAutocompleteFilter()
filter.type = .establishment
filter.country = "in" //in for India (Only India address will be searched)
placeClient.autocompleteQuery("Pass your text here", bounds: nil, filter: filter) { (results, error) in
if let err = error {
print("Autocomplete error \(err)")
return
}
if let results = results {
// show result in your table view
}
}

关于ios - 谷歌自动完成 Swift UITextField,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48145221/

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