如何使UITableViewController符合协议UISearchResultsUpdating?

时间:2015-02-15 02:02:26

标签: swift ios8 uisearchcontroller

我有一个UITableViewController课程,我正在实施一个UISearchController。我添加了以下代表:

class EmployeesTableView: UITableViewController, NSFetchedResultsControllerDelegate,UISearchResultsUpdating{

我正在导入UIKitCoreData。我收到以下错误:

"Type 'CustomTableViewController' does not conform to protocol UISearchResultsUpdating"

如何使控制器符合协议,我需要做什么?

3 个答案:

答案 0 :(得分:17)

斯威夫特3:

func updateSearchResults(for searchController: UISearchController) {

// code here

}

答案 1 :(得分:8)

将协议添加到类定义时,最简单的方法是将鼠标悬停在协议名称上,然后单击其名称。这将提升其定义。使用协议定义,它们通常会紧随其后的方法。如果需要一个方法,它将位于顶部,如果它在前面是可选的,那么它不是必需的以便符合。

在`UISearchResultsUpdating的情况下,它只有一个方法,它是必需的。只需复制方法或多种方法,然后单击后退箭头即可返回到您的班级。将方法粘贴到您的类中,并实现它们。如果它们是可选方法(在这种情况下没有可选方法),请从前面删除可选方法。这是我从定义中复制的内容。

func updateSearchResultsForSearchController(searchController: UISearchController)

然后你更新它以做你想做的事。

func updateSearchResultsForSearchController(searchController: UISearchController) {
    //do whatever with searchController here.
}

作为另一个例子,命令点击NSFechedResultsControllerDelegate。您将看到它没有必需的方法,但有许多可选的方法。这些信息通常也可以在文档中找到,但是我发现命令+单击是查找我正在寻找的内容的最快方法。

答案 2 :(得分:5)

Swift 3.0

//Make sure to import UIKit
import Foundation
import UIKit

class ViewController: UIViewController, UISearchBarDelegate {

     var searchController = UISearchController()

     override func viewDidLoad() {
          //Setup search bar
          searchController = UISearchController(searchResultsController: nil)
          searchController.dimsBackgroundDuringPresentation = false
          definesPresentationContext = true
          //Set delegate
          searchController.searchResultsUpdater = self
          //Add to top of table view
          tableView.tableHeaderView = searchController.searchBar
     }
}
extension ViewController: UISearchResultsUpdating {
     func updateSearchResults(for searchController: UISearchController) {
          print(searchController.searchBar.text!)
     }
}