Reputation: 178
This line is giving me error:
let recognizer = UIPanGestureRecognizer(target: self, action: Selector(("handlePan")))
Upvotes: 0
Views: 139
Reputation: 46
As far as i understood your problem it will be solved by changing in syntax a little bit. I also faced this once. Try this
let recognizer = UIPanGestureRecognizer(target: self, action: #selector(CustomTableViewCell.handlePanTest(_:)))
Upvotes: 1