表格视图日期仅选择长按

时间:2017-07-19 12:50:03

标签: ios swift uitableview swift3

我正在使用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数据,而不是长按。

My tabel view is displaye above the select carcategory button

1 个答案:

答案 0 :(得分:1)

由于您正在使用手势,因此在添加要查看的手势之前,请添加以下行

tap.cancelsTouchesInView = false // assuming tap is your gesture recogniser variable