Created
May 17, 2017 07:17
-
-
Save farhan-syed/ed3d25e5620a2f3c7f39994d9f3608e3 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
func createSearchBar() { | |
let searchBar = UISearchBar() | |
searchBar.showsCancelButton = false | |
searchBar.placeholder = "Search" | |
searchBar.delegate = self | |
self.navigationItem.titleView = searchBar | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment