我有一个UITableViewController
类,我在其中实现一个UISearchController
. 我添加了以下代表:
class EmployeesTableView: UITableViewController, NSFetchedResultsControllerDelegate,UISearchResultsUpdating{
我正在同时导入UIKit
和CoreData
。我收到以下错误:
"Type 'CustomTableViewController' does not conform to protocol UISearchResultsUpdating"
我需要做什么才能使控制器符合协议?