1.Создайте xib ячейки и установите строку поиска в ячейке (например, ваша ячейка называется SearchBarCell)
2. Теперь установите SearchBarCell как «viewForHeaderInSection»
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let cell = tableView.dequeueReusableCell(withIdentifier: "SearchBarCell") as! SearchBarCell
return cell
}
- указать высоту сечения
func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return 50
}