更改 GMSPlacePicker 中的搜索文本颜色

Changing search text color in GMSPlacePicker

我在我的应用程序中使用 GMSPlacePicker。它有一个非常简单的 API:

CLLocationCoordinate2D center = currentLocation.coordinate;
CLLocationCoordinate2D northEast = CLLocationCoordinate2DMake(center.latitude + 0.02, center.longitude + 0.02);
CLLocationCoordinate2D southWest = CLLocationCoordinate2DMake(center.latitude - 0.02, center.longitude - 0.02);
GMSCoordinateBounds *viewport = [[GMSCoordinateBounds alloc] initWithCoordinate:northEast
                                                                             coordinate:southWest];
GMSPlacePickerConfig *config = [[GMSPlacePickerConfig alloc] initWithViewport:viewport];
_placePicker = [[GMSPlacePicker alloc] initWithConfig:config];

[_placePicker pickPlaceWithCallback:^(GMSPlace *place, NSError *error) {

}];

它会自动从当前显示的 ViewController 中显示出来。还有一个搜索功能,允许用户使用文本搜索地点。

但是,我的应用主题是黑色的,我已经使用 UIAppearance 代理设置了导航栏颜色:

[[UINavigationBar appearance] setBarTintColor:[UIColor blackColor]];
[[UINavigationBar appearance] setTranslucent:NO];

导致搜索出现问题,因为导航栏背景为黑色,无法看到搜索文本。

我也试过按照建议使用 UIAppearance 代理 here 但没有效果。

[[UITextField appearanceWhenContainedIn:[UISearchBar class], nil] setTextColor:[UIColor whiteColor]];

这对我有帮助:

[[UISearchBar appearance] setBarStyle:UIBarStyleBlack]

我在处理 Google 地图 API 时遇到了同样的问题,并通过以下代码行找到了我的解决方案:

[[UITextField appearanceWhenContainedIn:[<Object of your Google Maps API class(like GMSAutocompleteViewController)>.searchDisplayController.searchBar class], nil] setDefaultTextAttributes:@{NSForegroundColorAttributeName:[UIColor whiteColor]}];

在为 Google 地图 API class 创建对象之后,在呈现 class.[= 之前​​添加上面的行20=]

上面接受的答案也适用于这种情况并且值得赞赏,但是该行代码将使搜索栏中的文本默认为黑色。

通过使用我的回答,可以将文本颜色更改为 iOS 中可用的任何自定义颜色。