标签: ios
这一行给了我错误:
让识别器= UIPanGestureRecognizer(目标:自我,动作:选择器((" handlePan")))
答案 0 :(得分:1)
据我了解你的问题,它将通过改变语法来解决。我也遇到过这一次。试试这个
let recognizer = UIPanGestureRecognizer(target: self, action: #selector(CustomTableViewCell.handlePanTest(_:)))