gpt4 book ai didi

ios - GMSAutocompleteViewController 中无法显示取消按钮

转载 作者:搜寻专家 更新时间:2023-11-01 07:02:46 24 4
gpt4 key购买 nike

我从

添加了自动完成 UI 控件“添加全屏控件”

https://developers.google.com/places/ios-api/autocomplete

并使用下面的代码在按下按钮时显示自动完成 View Controller 。

let autocompleteController = GMSAutocompleteViewController()
autocompleteController.delegate = self
present(autocompleteController, animated: true, completion: nil)

下面的图片显示了我所得到的。一切正常,但只有当我点击那里时才会显示取消按钮。

enter image description here enter image description here

最佳答案

如果您使用以下类型代码,那么您将面临这个问题

UIBarButtonItem.appearance().setTitleTextAttributes([
NSAttributedStringKey.foregroundColor: UIColor.white,
NSAttributedStringKey.font: UIFont.systemFont(ofSize: 0.1)
], for: UIControlState.normal)

解决方案 - 从 UIControlState.normal 更改 UIControlState

UIBarButtonItem.appearance().setTitleTextAttributes([
NSAttributedStringKey.foregroundColor : UIColor.white,
NSAttributedStringKey.font: UIFont.systemFont(ofSize: 0.1)
], for: UIControlState.application)

关于ios - GMSAutocompleteViewController 中无法显示取消按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50133025/

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