我正在使用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
数据,而不是长按。
答案 0 :(得分:1)
由于您正在使用手势,因此在添加要查看的手势之前,请添加以下行
tap.cancelsTouchesInView = false // assuming tap is your gesture recogniser variable