chronotruck / FlagPhoneNumber

A formatted phone number UITextField with country flag picker.
Apache License 2.0
437 stars 317 forks source link

Search Bar doesn't appear on IOS less than 13 #147

Closed Black-riddle closed 4 years ago

Black-riddle commented 4 years ago

Hello, When I display countries using the FPNCountryListViewController the search bar appears only on its first display. When I dismiss FPNCountryListViewController and display it again it appears without the search bar. This problem only appears whith ios Less than 13.

2078prince commented 4 years ago

Have you find any solution?

Black-riddle commented 4 years ago

Have you find any solution?

Yes, in "FPNCountryListViewController" I have changed one line. I used the navigationItem.searchController with Ios 13 and above if #available(iOS 13.0, *) { navigationItem.searchController = searchController } else { tableView.tableHeaderView = searchController.searchBar } PS: This worked for me ;)