swift – 如何在Google Place AutocompleteViewController中的GMSAutocompleteViewController中设置...

栏目: Swift · 发布时间: 5年前

内容简介:翻译自:https://stackoverflow.com/questions/41381233/how-to-set-text-in-gmsautocompleteviewcontroller-in-google-place-autocompletevie
在我的应用程序中打开时,我需要帮助在GMSAutocompleteViewController的searchBar中设置文本.我在 Google Place AutocompleteViewController 使用GMSAutocompleteViewController.

swift – 如何在Google Place AutocompleteViewController中的GMSAutocompleteViewController中设置...

我通过结合@Youngjin和@ Exception的Swift 4和Google Places 2.6.0的答案得到了一个有效的解决方案

要访问GMSAutocompleteViewController搜索栏:

let views = gmsAutoCompleteViewController.view.subviews
let subviewsOfSubview = views.first!.subviews
let subOfNavTransitionView = subviewsOfSubview[1].subviews
let subOfContentView = subOfNavTransitionView[2].subviews     
let searchBar = subOfContentView[0] as! UISearchBar

然后设置文本并自动搜索:

searchBar.text = "Your address"
searchBar.delegate?.searchBar?(searchBar, textDidChange: "Your address") // This performs the automatic searching.

我发现在尝试从内部设置文本时收到了EXC_BAD_ACCESS错误

didRequestAutocompletePredictions(_ viewController:GMSAutocompleteViewController).

所以我把这段代码放在我提供autoCompleteController的完成块中,它可以正常工作.

将它们组合在一起:

let gmsAutoCompleteViewController = GMSAutocompleteViewController()
gmsAutoCompleteViewController.delegate = self

present(gmsAutoCompleteViewController, animated: true) {
    let views = gmsAutoCompleteViewController.view.subviews
    let subviewsOfSubview = views.first!.subviews
    let subOfNavTransitionView = subviewsOfSubview[1].subviews
    let subOfContentView = subOfNavTransitionView[2].subviews
    let searchBar = subOfContentView[0] as! UISearchBar
    searchBar.text = "Your address"
    searchBar.delegate?.searchBar?(searchBar, textDidChange: "Your address")
}

编辑:我发现这个解决方案似乎只适用于iOS 11.

让searchBar = subOfContentView [0]为!的UISearchBar

将在iOS 10上失败,可能还会降低版本.

翻译自:https://stackoverflow.com/questions/41381233/how-to-set-text-in-gmsautocompleteviewcontroller-in-google-place-autocompletevie


以上所述就是小编给大家介绍的《swift – 如何在Google Place AutocompleteViewController中的GMSAutocompleteViewController中设置...》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

产品经理必懂的技术那点事儿

产品经理必懂的技术那点事儿

唐韧 / 电子工业出版社 / 2017-1 / 59

《产品经理必懂的技术那点事儿》以非技术背景产品经理了解技术为主题,将技术知识以简单并且易于理解的方式讲述出来,帮助非技术背景产品经理了解技术、学习技术,旨在帮助产品经理高效地与技术人员进行沟通与合作。 《产品经理必懂的技术那点事儿》的主要内容围绕产品经理需要了解的互联网基础技术知识展开,涉及客户端、服务器端、数据库及一些数据处理知识。同时,还就产品经理需具备的一些软实力,例如沟通能力和解决问......一起来看看 《产品经理必懂的技术那点事儿》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具