如果更改范围按钮(在点击范围后),如何更新搜索结果? 当我再次输入时,搜索结果已更改(使用新范围)!
searchControl - config 导入UIKit
class ProductTableView: UIViewController, UITableViewDataSource, UITableViewDelegate, UISearchResultsUpdating
{
@IBOutlet weak var tableView: UITableView!
var searchController: UISearchController!
var friendsArray = [FriendItem]()
var filteredFriends = [FriendItem]()
override func viewDidLoad()
{
super.viewDidLoad()
searchController = UISearchController(searchResultsController: nil)
searchController.searchBar.sizeToFit()
searchController.searchResultsUpdater = self
searchController.dimsBackgroundDuringPresentation = false
searchController.searchBar.scopeButtonTitles = ["Title","SubTitle"]
definesPresentationContext = true
tableView.tableHeaderView = searchController.searchBar
self.tableView.reloadData()
}
更新功能 当我输入文本NSLog打印我的文本和范围号。 当我改变范围 - 什么都没有!!!
func updateSearchResultsForSearchController(searchController: UISearchController) {
let searchText = searchController.searchBar.text
let scope = searchController.searchBar.selectedScopeButtonIndex
NSLog("searchText - \(searchText)")
NSLog("scope - \(scope)")
filterContents(searchText, scope: scope)
tableView.reloadData()
}
过滤功能
func filterContents(searchText: String, scope: Int)
{
self.filteredFriends = self.friendsArray.filter({( friend : FriendItem) -> Bool in
var fieldToSearch: String?
switch (scope){
case (0):
fieldToSearch = friend.title
case(1):
fieldToSearch = friend.subtitle
default:
fieldToSearch = nil
}
var stringMatch = fieldToSearch!.lowercaseString.rangeOfString(searchText.lowercaseString)
return stringMatch != nil
})
}
请帮帮我!
答案 0 :(得分:10)
您期望的行为是合乎逻辑的,表面上似乎是正确的,但实际上并非如此。值得庆幸的是,这是一个简单的解决方法。
这是Apple对该方法的描述:
当搜索栏成为第一个响应者或用户在搜索栏内进行更改时调用。
范围更改是搜索栏中的更改,对吧?我感觉合理。但如果您阅读讨论,Apple会明确表示行为不是您所期望的:
只要搜索栏成为第一个响应者或对搜索栏中的文本进行了更改,就会自动调用此方法。
不包括在内:对范围的更改。奇怪的是要忽视它,不是吗?要么在更改范围时调用该方法,要么应该清除摘要它不是。
您可以通过将 UISearchBarDelegate 协议添加到视图控制器并将searchController.searchBar.delegate
设置为视图控制器来获得所需的行为。
然后添加:
func searchBar(searchBar: UISearchBar, selectedScopeButtonIndexDidChange selectedScope: Int) {
updateSearchResultsForSearchController(searchController)
}
每当范围发生变化时,这将导致updateSearchResultsForSearchController
被触发,正如您所期望的那样。但相反,您可能希望将updateSearchResultsForSearchController
的内容纳入updateSearchResultsForSearchController
和selectedScopeButtonIndexDidChange
调用的新方法中。