I had been using the following code prior to iOS 11 to customize the appearance of the UISearchController search bar:
UISearchController
var searchController = UISearc
You have to access the UITextField inside the UISearchBar. You can do that by using
let textFieldInsideSearchBar = yourSearchbar.value(forKey: "searchField") as? UITextField textFieldInsideSearchBar?.textColor = yourcolor
OR