0
我需要一些關於此問題的幫助。當用戶在uisearchbar上點擊時禁用鍵盤彈出
我想禁用鍵盤彈出當用戶在我的應用程序中的搜索欄上點擊。任何人都有如何做到這一點的想法?如果可以在應用程序中完全禁用鍵盤會更好。
我正在開發iOS應用程序的swift這個應用程序。
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"
非常感謝。它按我想要的那樣工作。 –
你可以選擇以不同的方式感謝我。 –