Since iOS 8 I encounter an issue with the swipe to delete gesture on custom UITableViewCell.
The problem seems come from UITextField inside the contentView of UITableViewCell.
It seems to be a problem in iOS 8, I have the same code working fine in iOS 7.
How can I keep the UITextField editable and the swipe to delete gesture working at the same time?
I found a workaround for my issue in iOS 8
Subclass UITextField and add a view on top of the UITextField then add a UIGestureRecognizer for single tap on the "mask" view.
The following worked for me: