Explorar el Código

VLCMediaCategoryViewController: Search: Resign first responder on search

(closes #530)
Soomin Lee hace 6 años
padre
commit
dea67effec
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. 5 0
      Sources/MediaCategories/MediaCategoryViewController.swift

+ 5 - 0
Sources/MediaCategories/MediaCategoryViewController.swift

@@ -259,6 +259,11 @@ class VLCMediaCategoryViewController: UICollectionViewController, UICollectionVi
         searchBar.setShowsCancelButton(false, animated: true)
         reloadData()
     }
+
+    func searchBarSearchButtonClicked(_ searchBar: UISearchBar) {
+        searchBar.resignFirstResponder()
+    }
+
     func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) {
         searchDataSource.shouldReloadFor(searchString: searchText)
         reloadData()