当我在搜索栏中搜索时,它会相应地提供结果,但是当我单击外部以选择选项时,搜索栏占位符将变为nil,只有搜索到的选项可用。要获取所有选项,我必须再次打开搜索栏,然后按“取消”,这会重新加载表格视图以显示所有选项。
Home Screen
Entering text in search bar
After clicked on the screen
import UIKit
class ViewController: UIViewController, UICollectionViewDelegate, UICollectionViewDataSource,UISearchControllerDelegate,UISearchBarDelegate {
let locationNames = ["Python", "C#", "Machine Learning"]
let locationImages = [UIImage(named: "hawaiiResort"), UIImage(named: "mountainExpedition"), UIImage(named: "scubaDiving")]
let locationDescription = ["Beautiful resort off the coast of Hawaii", "Exhilarating mountainous expedition through Yosemite National Park", "Awesome Scuba Diving adventure in the Gulf of Mexico"]
let searchController = UISearchController(searchResultsController: nil)
@IBOutlet weak var collectionView: UICollectionView!
var searchResult = [String]()
var searching = false
override func viewDidLoad() {
navigationItem.title = "Courses"
navigationController?.navigationBar.prefersLargeTitles = true
self.navigationItem.largeTitleDisplayMode = .always
searchController.searchResultsUpdater = self
searchController.searchBar.delegate = self
navigationItem.searchController = searchController
definesPresentationContext = true
currentPage = 0
}
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
if(searching){
return searchResult.count
}
else{
return 3
}
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell", for: indexPath) as! CollectionViewCell
if(searching)
{
cell.locationName.text = searchResult[indexPath.row]
let people = locationNames.index{$0 == String(searchResult[indexPath.row])}
cell.locationImage.image = locationImages[people ?? 0]
cell.locationDescription.text = locationDescription[people ?? 0]
}
else
{
cell.locationImage.image = locationImages[indexPath.row]
cell.locationName.text = locationNames[indexPath.row]
cell.locationDescription.text = locationDescription[indexPath.row]
}
cell.contentView.layer.cornerRadius = 4.0
cell.contentView.layer.borderWidth = 1.0
cell.contentView.layer.borderColor = UIColor.clear.cgColor
cell.contentView.layer.masksToBounds = false
cell.layer.shadowColor = UIColor.gray.cgColor
cell.layer.shadowOffset = CGSize(width: 0, height: 1.0)
cell.layer.shadowRadius = 4.0
cell.layer.shadowOpacity = 1.0
cell.layer.masksToBounds = false
cell.layer.shadowPath = UIBezierPath(roundedRect: cell.bounds, cornerRadius: cell.contentView.layer.cornerRadius).cgPath
return cell
}
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
let vc = self.storyboard?.instantiateViewController(withIdentifier: "ContentViewController") as! ContentViewController
vc.selectedCourse = locationNames[indexPath.row]
self.navigationController?.pushViewController(vc, animated: true)
}
}
extension ViewController: UISearchResultsUpdating{
func updateSearchResults(for searchController: UISearchController) {
guard let searchText = searchController.searchBar.text else { return }
searchResult = locationNames.filter({$0.prefix(searchText.count) == searchText})
searching = true
collectionView.reloadData()
}
// func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) {
// searchResult = locationNames.filter({$0.prefix(searchText.count) == searchText})
// searching = true
// collectionView.reloadData()
// }
func searchBarSearchButtonClicked(_ searchBar: UISearchBar) {
NSLog("%@",searchBar.text ?? "");
}
func searchBarCancelButtonClicked(_ searchBar: UISearchBar) {
searching = false
searchBar.text = ""
collectionView.reloadData()
}
}
我是Swift的新手。
答案 0 :(得分:0)
首先,您应该让updateSearchResults(for:)
进行过滤/更新,这是它的唯一目的。
为得到答案,也许您是在isActive
之外点击时将UISearchController
的{{1}}方法设置为false
,从而导致其中的文本被删除,并且不允许搜索控制器进行相应更新以再次重新加载所有数据。
因此,一种解决方案可以是在searchBar
不再是第一响应者时添加searchBarTextDidEndEditing(_)
方法来重置数据源:
searchBar
或更妙的是,让func searchBarTextDidEndEditing(_ searchBar: UISearchBar) {
searching = false
searchResult = locationNames
collectionView.reloadData()
}
方法自动更新数据:
updateSearchResults(for:)