I need some help regarding this issue.
I want to disable the keyboard popup when user taps on a searbar in my app. Any one have an idea on how to do that? It would be even better if it is possible to completely disable keyboard in the app.
I am developing this app in swift for iOS btw.
I have added a searchbar in the view programmatically using the following code:
let searchController: UISearchController!
self.searchController = UISearchController(searchResultsController: nil)
self.searchController.searchResultsUpdater = self
self.searchController.dimsBackgroundDuringPresentation = false
self.searchController.searchBar.sizeToFit()
self.searchController.searchBar.placeholder = "Search"