在tableview中点击两个动作

时间:2018-03-26 07:37:21

标签: ios swift uitableview swift4

在tableview中点击两个动作!

我有一个关于在tableview中点击的问题。我可以设置次要操作吗? 1.点击(默认)。 2.点击并按住所选单元格2-3秒,然后执行替代操作。

1 个答案:

答案 0 :(得分:5)

您可以在UILongPressGestureRecognizer中添加cell.contentView并处理该事件,您的1个事件"普通点击事件"将由didSelectRowAtIndexPath默认方法触发,而UILongPressGestureRecognizer

会触发暂停事件

单元格实施示例

import UIKit

class LongPressTableViewCell: UITableViewCell {

    var longPressGesture : UILongPressGestureRecognizer?
    var longPressClosure : (()->Void)?

    override func awakeFromNib() {
        super.awakeFromNib()
        // Initialization code
    }

    func setupWithClosure(closure:@escaping (()->Void)) {
        self.longPressClosure = closure
        if(longPressGesture == nil) {
            longPressGesture = UILongPressGestureRecognizer(target: self, action: #selector(longPressAction(gesture:)))
            longPressGesture!.minimumPressDuration = 2
            self.contentView.addGestureRecognizer(longPressGesture!)
        }
    }



    @objc func longPressAction(gesture:UILongPressGestureRecognizer) {
        if (gesture.state == UIGestureRecognizerState.began){
                self.longPressClosure?()
        }
     }


    override func setSelected(_ selected: Bool, animated: Bool) {
        super.setSelected(selected, animated: animated)

        // Configure the view for the selected state
    }

}

TableView DataSource&&委派示例实现

extension ViewController : UITableViewDelegate, UITableViewDataSource {
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 10
    }

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        if let cell = tableView.dequeueReusableCell(withIdentifier: "LongPressTableViewCell", for: indexPath) as? LongPressTableViewCell{
            cell.setupWithClosure {
                //LongPress action
                debugPrint("LongPress")
            }
            return cell
        }

        return UITableViewCell()
    }

    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        debugPrint("Tap Action")
    }
}