如何在swift 3中使用pan手势的方法?

时间:2017-08-14 11:48:50

标签: ios

这一行给了我错误:

  

让识别器= UIPanGestureRecognizer(目标:自我,动作:选择器((" handlePan")))

1 个答案:

答案 0 :(得分:1)

据我了解你的问题,它将通过改变语法来解决。我也遇到过这一次。试试这个

let recognizer = UIPanGestureRecognizer(target: self, action: #selector(CustomTableViewCell.handlePanTest(_:)))