فهرست منبع

MediaCategoryViewController: Search: Cancel on scroll with empty text

Soomin Lee 5 سال پیش
والد
کامیت
fb57dc056d
1فایلهای تغییر یافته به همراه4 افزوده شده و 0 حذف شده
  1. 4 0
      Sources/MediaCategories/MediaCategoryViewController.swift

+ 4 - 0
Sources/MediaCategories/MediaCategoryViewController.swift

@@ -223,6 +223,10 @@ class MediaCategoryViewController: UICollectionViewController, UICollectionViewD
         if isSearching {
             searchBar.endEditing(true)
             delegate?.enableCategorySwitching(for: self, enable: true)
+            // End search if scrolled and the textfield is empty
+            if let searchBarText = searchBar.text, searchBarText.isEmpty {
+                searchBarCancelButtonClicked(searchBar)
+            }
             return
         }