微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

在我的应用程序中打开时,我需要帮助在GMSAutocompleteViewController的searchBar中设置文本.我在 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://www.jb51.cc/swift/319290.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐