Created
October 10, 2017 08:04
-
-
Save StanislavK/c7a65b819a32e1bf77d933971f9c49d9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let searchController = UISearchController(searchResultsController: nil) | |
| if #available(iOS 11.0, *) { | |
| self.navigationItem.searchController = searchController | |
| searchController.isActive = true | |
| } | |
| else { | |
| present(searchController, animated: true, completion: nil) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment