iOS9 - UITableViewCellContentView is covering up Controls inside Cell

After more investigation and searching, i found my solution here: Button in UITableViewCell not responding under ios 7

What fixed it for me was:

cell.contentView.userInteractionEnabled = NO;

This prevents the cell content view from taking over the touch events, even though it's on top of the other views.

This issue was not only happening on iOS9, but on iOS7 as well. In iOS8, the Content view was behind the controls.


I had this problem when I was reusing a cell as a .xib. I didn't realise but when I first created the xib the default view that it created was in fact a UIView and not a UITableViewCell. It seems that at some stage UIKit adds the content view on top of my other elements and therefore interrupts certain events (e.g. touch events).

I resolved this by opening my xib file and dragging a UITableViewCell onto the canvas and copying my UI elements from the old view to the new cell.

Afterwards, additional settings also became available in the attributes inspector that matched those for a UITableViewCell.


Problem can be in .xib file for your cell. When you create cell in separate .xib, be sure to drag UITableViewCell on canvas, not UIView.


SWIFT

I had an issue where my buttons in my custom tableviewcell swift files were working just fine, but then I upgraded to Xcode 12 and then all of a sudden I couldn't access them anymore (meaning my taps were not being recognized). The cell content view seemed to be interfering in the hierarchy and this like saved me:

cell.contentView.isUserInteractionEnabled = false

I put the line in cellForRowAt.

Thank you to @FranticRock