- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我在 iOS 中使用 Google 自动完成 placekicker。它向我展示了具有原生设计的 Controller 。我想自定义它的导航栏颜色。但我做不到。下面是代码
let autocompleteController = GMSAutocompleteViewController()
autocompleteController.tintColor = UIColor.red
autocompleteController.navigationController?.navigationBar.barTintColor = Constant.AppColor.navigationColor
autocompleteController.delegate = self
self.present(autocompleteController, animated: true, completion: nil)
最佳答案
我写了这段代码来适应亮/暗模式:
swift
let controller:GMSAutocompleteViewController! = GMSAutocompleteViewController()
if #available(iOS 13.0, *) {
if UIScreen.mainScreen.traitCollection.userInterfaceStyle == UIUserInterfaceStyleDark {
controller.primaryTextColor = UIColor.whiteColor
controller.secondaryTextColor = UIColor.lightGrayColor
controller.tableCellSeparatorColor = UIColor.lightGrayColor
controller.tableCellBackgroundColor = UIColor.darkGrayColor
} else {
controller.primaryTextColor = UIColor.blackColor
controller.secondaryTextColor = UIColor.lightGrayColor
controller.tableCellSeparatorColor = UIColor.lightGrayColor
controller.tableCellBackgroundColor = UIColor.whiteColor
}
}
objective-C
GMSAutocompleteViewController *controller = [[GMSAutocompleteViewController alloc] init];
if (@available(iOS 13.0, *)) {
if(UIScreen.mainScreen.traitCollection.userInterfaceStyle == UIUserInterfaceStyleDark ){
controller.primaryTextColor = UIColor.whiteColor;
controller.secondaryTextColor = UIColor.lightGrayColor;
controller.tableCellSeparatorColor = UIColor.lightGrayColor;
controller.tableCellBackgroundColor = UIColor.darkGrayColor;
} else {
controller.primaryTextColor = UIColor.blackColor;
controller.secondaryTextColor = UIColor.lightGrayColor;
controller.tableCellSeparatorColor = UIColor.lightGrayColor;
controller.tableCellBackgroundColor = UIColor.whiteColor;
}
}
结果:
关于ios - 如何为 iOS 自定义 GMSAutocompleteViewController?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48072787/
我在我的应用程序中使用 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
我是一名优秀的程序员,十分优秀!