swiftyonBoardPage中的tableview didselectrowat无法正常工作

时间:2019-03-15 13:07:28

标签: ios swift uitableview didselectrowatindexpath

我正在使用swiftyonBoard为我的应用程序制作教程屏幕。在教程屏幕的最后一个屏幕上,我希望用户从表格视图中选择一个国家。 Tableview都是在SwiftyOnBoardPage内部配置的。其他一切工作正常。但是没有调用tableview didselectrowat方法。

我尝试过的解决方案

1->检查用户交互

2->检查允许选择

3->在控制器内部而不是SwiftyonBoardPage中配置tableview

这是我的教程视图

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)
    }


}

请帮助,谢谢。

0 个答案:

没有答案