内容简介:翻译自:https://stackoverflow.com/questions/41381233/how-to-set-text-in-gmsautocompleteviewcontroller-in-google-place-autocompletevie
我通过结合@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中设置...》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
屏幕上的聪明决策
Shlomo Benartzi、Jonah Lehrer / 石磊 / 北京联合出版公司 / 2017-3 / 56.90
为什么在手机上购物的人,常常高估商品的价值? 为什么利用网络订餐,人们更容易选择热量高的食物? 为什么网站上明明提供了所有选项,人们却还是选不到最佳的方案? 屏幕正在改变我们的思考方式,让我们变得更冲动,更容易根据直觉做出反应,进而做出错误的决策。在《屏幕上的聪明决策》一书中,什洛莫·贝纳茨教授通过引人入胜的实验及案例,揭示了究竟是什么影响了我们在屏幕上的决策。 ......一起来看看 《屏幕上的聪明决策》 这本书的介绍吧!