我正在尝试在我的tableview中实现一个搜索栏,我正在使用Swift Bond来填充表格中的数据。有人知道如何使用Bond正确过滤数据吗?
我正在使用MVVM架构。我在viewDidLoad上调用的方法中执行所有绑定:
viewModel.students.bind(to: tableView, animated: false) { students, indexPath, tableview in
let student = students[indexPath.row]
let cell = tableview.dequeueReusableCell(withIdentifier: R.nib.studentCell.name, for: indexPath) as! StudentCell
cell.bind(to: student)
return cell
这允许我的表在学生中填充值,但我无法想到如何实现搜索栏。
我完成了所有的配置和委派,但不知道从哪里开始。