I have one tableview and each cell contains one button. It\'s working pretty well all iOS versions but 7. I don\'t know what\'s going on. The cell is constructed in one xib
My problem was that I was adding UIButton as subview of UIImageView which has user interaction disabled by default. So I had to enable it:
UIButton
UIImageView
imageView.isUserInteractionEnabled = true