我正在tableViewCell
中使用Xib
。
在表格视图中,仅当我长按didSelectRowAt
时才调用tableViewCell
函数
我的代码如下
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
categorytabelview.deselectRow(at: indexPath, animated: true)
self.categorylabel.text = totalArrayofCars.object(at: indexPath.row) as? String
categorytabelview.isHidden = true
}
我想单选而不是长按选择
tabelViewCell
数据。 最佳答案
由于您正在使用手势,因此在添加要查看的手势之前,请添加以下行
tap.cancelsTouchesInView = false // assuming tap is your gesture recogniser variable
关于ios - 表格查看日期只有长按才能选择,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45191164/