gpt4 book ai didi

ios - 无法选择表格 View 的单元格

转载 作者:行者123 更新时间:2023-11-29 05:20:24 24 4
gpt4 key购买 nike

我正在使用 Xcode 11.2,并且我有一个包含 3 个表格 View 的 View 。它们都有代码导出,并且它们的委托(delegate)和数据源都在 viewDidLoad 方法中正确设置。

发生的情况是,单击时单元格会突出显示,但随后它不会保持选中状态(didSelectRow 永远不会被调用)。

如果我用鼠标左键和右键快速单击多次,单元格最终将被选中并调用 didSelectRow。

我还注意到,如果我单击单元格并同时稍微滚动表格,选择几乎总是有效。

这里是一些代码:

@IBOutlet weak var linesTableView: UITableView!
@IBOutlet weak var firstLvlTableView: UITableView!
@IBOutlet weak var secondLvlTableView: UITableView!

override func viewDidLoad() {
super.viewDidLoad()

self.linesTableView.dataSource = self
self.linesTableView.delegate = self
self.firstLvlTableView.delegate = self
self.firstLvlTableView.dataSource = self
self.secondLvlTableView.dataSource = self
self.secondLvlTableView.delegate = self

if (CLLocationManager.locationServicesEnabled()) {
locationManager = CLLocationManager()
locationManager.delegate = self
locationManager.desiredAccuracy = kCLLocationAccuracyBest
locationManager.requestAlwaysAuthorization()
locationManager.startUpdatingLocation()
}
self.secondLvlTableView.isHidden = true
self.firstLvlTableView.isHidden = false
self.linesTableView.isHidden = true
fetchData()
}

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if tableView == linesTableView {
return 0
} else if tableView == firstLvlTableView {
return self.salesAssistantLocalized.count //viewModel.typesOfSale.lists.endIndex
} else if tableView == secondLvlTableView {
return 4 //viewModel.standardTableLevels.lists.endIndex
} else {
return 0
}
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
if tableView == firstLvlTableView {
let cell = tableView.dequeueReusableCell(withIdentifier: "FirstLvlCell", for: indexPath)
cell.textLabel?.text = self.salesAssistantLocalized[indexPath.row]
return cell
} else if tableView == secondLvlTableView {
let cell = tableView.dequeueReusableCell(withIdentifier: "SecondLvlCell", for: indexPath)
cell.textLabel?.text = self.levels[indexPath.row]
return cell
} else {
let cell = tableView.dequeueReusableCell(withIdentifier: "SaleTypeCell", for: indexPath)
return cell
}
}

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
printDebug("Did Select Row \(indexPath.row) for table \(tableView)")
if tableView == firstLvlTableView {
if indexPath.row == 0 {
self.secondLvlTableView.isHidden = false
}
}
}

最佳答案

我已经知道发生了什么了。所有 View Controller 都从“BaseViewController”扩展,该“BaseViewController”具有用于关闭键盘的点击手势识别器。这就是导致问题的原因。

我只是添加了一个 Bool 以便能够选择是否使用它:

open var useTapGesture: Bool = true

然后用以下内容包装点击手势代码:

if useTapGesture {
let tap: UITapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(BaseViewController.dismissKeyboard))
view.addGestureRecognizer(tap)
}

这样我就可以使用

useTapGesture = false

在我的 viewDidLoad 方法中。

关于ios - 无法选择表格 View 的单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58725574/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com