Я использую swiftyonBoard , чтобы создать обучающие экраны для моего приложения. На последнем экране учебного руководства я хочу, чтобы пользователь выбирал страну из таблицы. Tableview все настроено внутри SwiftyOnBoardPage. Все остальное работает нормально. Но метод tableview didselectrowat не вызывается.
Решения, которые я пробовал
1 -> проверить взаимодействие с пользователем
2 -> разрешить проверку выбора
3 -> настроенный просмотр таблицы внутри контроллера вместо SwiftyonBoardPage
это мой взгляд на учебник
import UIKit
import SwiftyOnboard
class TutorialView3: SwiftyOnboardPage {
@IBOutlet weak var tableview: UITableView!
@IBOutlet weak var countryField: UITextField!
let cellId = "UITableViewCell"
let countries = AppManager.shared.countryList
var filteredCountryList = AppManager.shared.countryList
override func awakeFromNib() {
super.awakeFromNib()
tableview.separatorStyle = .none
countryField.delegate = self
tableview.delegate = self
tableview.dataSource = self
tableview.register(UITableViewCell.self, forCellReuseIdentifier: cellId)
countryField.addTarget(self, action: #selector(self.countryFilter(_:)), for: .editingChanged)
}
}
extension TutorialView3: UITextFieldDelegate {
func textFieldShouldReturn(_ textField: UITextField) -> Bool {
self.endEditing(true)
return false
}
@objc fileprivate func countryFilter(_ textField:UITextField) {
let searchText = textField.text!
filteredCountryList.removeAll()
if searchText.count == 0 {
filteredCountryList = countries
}else {
filteredCountryList = countries.filter({$0.countryName.lowercased().contains(searchText.lowercased())})
}
tableview.reloadData()
}
}
extension TutorialView3: UITableViewDelegate, UITableViewDataSource {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return filteredCountryList.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: cellId, for: indexPath)
cell.backgroundColor = .clear
cell.textLabel?.textColor = .white
cell.textLabel?.text = filteredCountryList[indexPath.row].countryName
return cell
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return UITableView.automaticDimension
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
tableView.deselectRow(at: indexPath, animated: true)
print(filteredCountryList[indexPath.row].countryName)
}
}
пожалуйста, помогите, заранее спасибо.