i tried a lot, only this helped me
if let views = navigationItem.searchController?.searchBar.searchTextField.subviews {
for view in views {
if type(of: view).description() == "_UISearchBarSearchFieldBackgroundView" {
view.alpha = 0
}
}
}