- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的 viewController 中的委托(delegate)函数:
func viewController(_ viewController: GMSAutocompleteViewController, didAutocompleteWith place: GMSPlace) {
print("Place name: \(place.name)")
print("Place address: \(place.formattedAddress)")
dismiss(animated: true, completion: nil)
}
我搜索了“Grav Skole”并在此处选择了第一个选项:
以下是日志:
Place name: Grav skole
Place address: "Hosleveien 24, 1358 Jar, Norway"
在 Android 上,结果显示为“Grav skole, Hosleveien, Jar, Norway”,这是所需的文本,与 iOS 不匹配。
我错过了什么?
最佳答案
听起来您想访问预测的文本,因为它们由 GMSAutocompleteViewController
显示在列表中。您可以通过实现 viewController:didSelectPrediction
来做到这一点GMSAutocompleteViewControllerDelegate
的方法,将在选择项目时调用。
func viewController(_ viewController: GMSAutocompleteViewController,
didSelectPrediction prediction: GMSAutocompletePrediction) -> Bool {
print("Primary: \(prediction.attributedPrimaryText)")
print("Secondary: \(prediction.attributedSecondaryText)")
return false;
}
关于ios - Google places - GMSAutocompleteViewController didAutocompleteWith 全文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43068226/
我在我的应用程序中使用 GMSAutocompleteViewController。并且想知道我可以简单地对其进行本地化(搜索栏文本、表格 View 中显示的错误文本等)。 感谢帮助。 最佳答案 你不
我正在使用 Google map 地点选取器并想更改导航栏颜色。我试过以下几行,但他们都在工作......导航栏保持白色...非常感谢您提供的任何帮助! let autocomplet
您好,我使用过 GMSAutocompleteViewController 全屏控件。 https://developers.google.com/places/ios-api/autocomplet
我正在使用 GMSAutocompleteViewController 以便让用户搜索地址。用户选择建议后,如何从 GMSAutocompleteViewController 获取地址详细信息?我正在
我从 添加了自动完成 UI 控件“添加全屏控件” https://developers.google.com/places/ios-api/autocomplete 并使用下面的代码在按下按钮时显示自
当我单击 GMSAutocompleteViewController 时,它应该只显示建议中的所有状态。我不想要这个领域的城市、国家或其他任何东西。那么这可能吗? 最佳答案 您无法直接过滤状态,Goo
这个问题在这里已经有了答案: Change UISearchBar textColor not working (7 个答案) 关闭 3 年前。 我正在使用 GMSAutocompleteViewC
我正在尝试删除 ios 版谷歌地图 API 的 GMSAutocompleteViewController 中的默认“取消”按钮。我该怎么做呢?这可能吗? 在此处输入图像描述 最佳答案 试试这个您可以
我最近将我的应用程序升级到 swift 3,每当它尝试调用谷歌地图中的自动完成 View Controller 时,它就会崩溃。我知道 api key 不是问题,因为在我升级到 swift 3 和 x
我在 iOS 中使用 Google 自动完成 placekicker。它向我展示了具有原生设计的 Controller 。我想自定义它的导航栏颜色。但我做不到。下面是代码 let au
我在我的应用中集成了 GMSAutocompleteViewController。 let autocompleteController = GMSAutocompleteViewController
我正在尝试子类化 GMSAutocompleteViewController 形式 GooglePlaces SDK,如下所示: class AddressFinderViewController:
这是我的 viewController 中的委托(delegate)函数: func viewController(_ viewController: GMSAutocompleteViewContr
我正在为我的应用实现默认的 GMSAutocompleteViewController。但是找不到任何文档或指南来将 searchController 的文本字段中的文本颜色更改为白色。现在看起来是黑
在我的应用程序中打开时,我需要帮助在 GMSAutocompleteViewController 的搜索栏中设置文本。我在 Google Place AutocompleteViewControlle
我是一名优秀的程序员,十分优秀!