I created a custom UITableViewCell subclass with multiple fields and some other properties. Since I used this new cell in my UITableViewController, the cells do not react on the "swipe to delete" gesture.
To test if I'm missing something in my delegate I added a plain standard UITableView to my xib, hooked up dataSource and delegate and returned a regular UITableViewCell from -tableView:cellForRowAtIndexPath:
this enabled the gesture again.
I searched on the net and one suggested to plain implement -layoutSubviews
which didn't work too.
Is there something I would have to implement in my subclass?